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

Diff of /smsdaemon/ModemTransceiver.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.57  
changed lines
  Added in v.105

  ViewVC Help
Powered by ViewVC 1.1.20