/[projects]/smsdaemon/SmsPdu.h
ViewVC logotype

Annotation of /smsdaemon/SmsPdu.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 196 - (hide annotations) (download)
Thu Dec 18 06:53:29 2008 UTC (15 years, 5 months ago) by torben
File MIME type: text/plain
File size: 1099 byte(s)
Make pretty

astyle -t -b -N

1 torben 148 #ifndef __SMSPDU_H__
2     #define __SMSPDU_H__
3 torben 59
4     #include <string>
5     #include <vector>
6    
7 torben 69 #include "Sms.h"
8    
9 torben 60 struct PduInfo
10     {
11     std::string pdu;
12     int len;
13     };
14    
15 torben 176
16     struct SmsPart
17     {
18     std::string message;
19     std::string sender;
20     short group,count,id;
21 torben 178
22     bool operator<(const SmsPart& p2) const
23     {
24     return (id < p2.id);
25     }
26     bool operator==(const SmsPart& p2) const
27     {
28     return (message==p2.message && sender==p2.sender && group==p2.group && count==p2.count && id==p2.id);
29     }
30    
31 torben 176 };
32    
33 torben 59 namespace SmsPdu
34     {
35 torben 176 //public section:
36     std::vector<PduInfo> CreateSmsPdu(std::string to, std::string message, bool allowMultipart);
37 torben 59
38 torben 176 SMS ParseSmsPdu(std::string pdu);
39    
40     //private section:
41 torben 196
42 torben 176 SmsPart ParseSmsPduWorker(std::string pdu);
43    
44 torben 68 std::string EncodePhonenr(std::string input);
45     std::string DecodePhonenr(std::string input);
46    
47 torben 59 std::string HexformatVector(std::vector<unsigned char> vec);
48 torben 69 std::vector<unsigned char> HexDecodeString(std::string str);
49 torben 59
50 torben 73 std::vector<unsigned char> Encode7to8bit(std::string str, int shift_start);
51 torben 70 std::string Decode8to7bit( std::vector<unsigned char> input, int shift_start );
52 torben 59
53     }
54 torben 148
55     #endif // __SMSPDU_H__

  ViewVC Help
Powered by ViewVC 1.1.20