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

Contents of /smsdaemon/GsmModem.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 59 - (show annotations) (download)
Wed Jun 11 19:42:24 2008 UTC (15 years, 11 months ago) by torben
File MIME type: text/plain
File size: 1083 byte(s)
Implemented basic sms pdu support

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

  ViewVC Help
Powered by ViewVC 1.1.20