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

Annotation of /smsdaemon/SmsToolTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 180 - (hide annotations) (download)
Fri Dec 12 12:54:27 2008 UTC (15 years, 5 months ago) by torben
File MIME type: text/plain
File size: 619 byte(s)
Remove ISmsTransceiver::DeleteSms() - Each transceiver should clean up after itself

Merge SmsHelper into ModemTransceiver, since it is closely connected to the AT command output


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 151 virtual void SendSms(std::string to, std::string message, bool allowMultipart);
12     virtual std::vector<SMS> ReadSms(bool readAll = false);
13    
14     virtual int DeleteAllSms();
15     virtual ~SmsToolTransceiver() {}
16    
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