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

Annotation of /smsdaemon/ModemTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 90 - (hide annotations) (download)
Mon Jun 16 10:21:02 2008 UTC (15 years, 11 months ago) by torben
Original Path: smsdaemon/GsmModem.h
File MIME type: text/plain
File size: 1156 byte(s)
Move IGsmModem to its own header file.

1 torben 26 #ifndef __GSMMODEM_H__
2     #define __GSMMODEM_H__
3    
4     /* using http://sourceforge.net/projects/libserial/
5     */
6    
7 torben 90 #include "IGsmModem.h"
8 torben 26
9     #include <string>
10     #include <vector>
11    
12     #include "Sms.h"
13    
14 torben 53 class SerialPort;
15 torben 44
16    
17     class GsmModem : public IGsmModem
18     {
19     public:
20 torben 26 GsmModem(SerialPort& serialport);
21     virtual ~GsmModem() {}
22    
23 torben 57 void Init();
24 torben 26
25 torben 63 virtual void SendSms(std::string to, std::string message, bool allowMultipart);
26 torben 59 void SendSmsPdu(std::string pdu, int len);
27    
28 torben 26 std::vector<SMS> ReadSms(bool readAll=false);
29     void DeleteSms(std::string smsIndex);
30     int DeleteAllSms();
31     private:
32     std::string GetResponse();
33     std::string Command(std::string command, std::string term = "OK\r\n");
34    
35 torben 57 bool _timeout;
36 torben 26 SerialPort& m_port;
37     };
38    
39 torben 44 class DebugGsmModem : public IGsmModem
40     {
41     public:
42 torben 67 DebugGsmModem() : _print(false) {}
43     DebugGsmModem(bool print) : _print(print) {}
44 torben 26
45 torben 67
46     virtual void SendSms(std::string to, std::string message, bool allowMultipart);
47    
48 torben 44 std::string GetTo() {return _to;}
49     std::string GetMessage() {return _message;}
50 torben 63 bool GetMultipart() {return _multipart;}
51 torben 44 private:
52     std::string _to;
53     std::string _message;
54 torben 63 bool _multipart;
55 torben 67 bool _print;
56 torben 44 };
57    
58 torben 26 #endif // __GSMMODEM_H__

  ViewVC Help
Powered by ViewVC 1.1.20