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

Annotation of /smsdaemon/SmsToolTransceiver.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: 607 byte(s)
Make pretty

astyle -t -b -N

1 torben 151 #ifndef __SMSTOOLTRANSCEIVER_H__
2     #define __SMSTOOLTRANSCEIVER_H__
3    
4     #include "ISmsTransceiver.h"
5    
6     class SmsToolTransceiver : public ISmsTransceiver
7     {
8     public:
9 torben 168 SmsToolTransceiver();
10    
11 torben 196 virtual void SendSms(std::string to, std::string message, bool allowMultipart);
12     virtual std::vector<SMS> ReadSms(bool readAll = false);
13 torben 151
14 torben 196 virtual int DeleteAllSms();
15     virtual ~SmsToolTransceiver() {}
16 torben 151
17     private:
18     SMS ParseFile(std::string path);
19     void ParseHeaders(std::string& headerstring, SMS& sms);
20     std::string CreateFilename();
21    
22 torben 168 std::string inboxdir;
23     std::string outgoingdir;
24 torben 151
25     };
26    
27    
28     #endif // __SMSTOOLTRANSCEIVER_H__

  ViewVC Help
Powered by ViewVC 1.1.20