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

Annotation of /smsdaemon/SmsToolTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 210 - (hide annotations) (download)
Sun Dec 21 21:14:40 2008 UTC (15 years, 5 months ago) by torben
File MIME type: text/plain
File size: 578 byte(s)
No usage for DeleteAllSms(), since all incoming messages should be serviced

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 ~SmsToolTransceiver() {}
15 torben 151
16     private:
17     SMS ParseFile(std::string path);
18     void ParseHeaders(std::string& headerstring, SMS& sms);
19     std::string CreateFilename();
20    
21 torben 168 std::string inboxdir;
22     std::string outgoingdir;
23 torben 151
24     };
25    
26    
27     #endif // __SMSTOOLTRANSCEIVER_H__

  ViewVC Help
Powered by ViewVC 1.1.20