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

Contents of /smsdaemon/SmsToolTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 196 - (show 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 #ifndef __SMSTOOLTRANSCEIVER_H__
2 #define __SMSTOOLTRANSCEIVER_H__
3
4 #include "ISmsTransceiver.h"
5
6 class SmsToolTransceiver : public ISmsTransceiver
7 {
8 public:
9 SmsToolTransceiver();
10
11 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 std::string inboxdir;
23 std::string outgoingdir;
24
25 };
26
27
28 #endif // __SMSTOOLTRANSCEIVER_H__

  ViewVC Help
Powered by ViewVC 1.1.20