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

Diff of /smsdaemon/ModemTransceiver.h

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

revision 63 by torben, Thu Jun 12 12:43:29 2008 UTC revision 67 by torben, Thu Jun 12 15:23:11 2008 UTC
# Line 44  private: Line 44  private:
44  class DebugGsmModem : public IGsmModem  class DebugGsmModem : public IGsmModem
45  {  {
46  public:  public:
47          virtual void SendSms(std::string to, std::string message, bool allowMultipart)          DebugGsmModem() : _print(false) {}
48                  {_to=to; _message = message; _multipart = allowMultipart;}          DebugGsmModem(bool print) : _print(print) {}
49    
50    
51            virtual void SendSms(std::string to, std::string message, bool allowMultipart);
52    
53          std::string GetTo() {return _to;}          std::string GetTo() {return _to;}
54          std::string GetMessage() {return _message;}          std::string GetMessage() {return _message;}
# Line 54  private: Line 57  private:
57          std::string _to;          std::string _to;
58          std::string _message;          std::string _message;
59          bool _multipart;          bool _multipart;
60            bool _print;
61  };  };
62    
63  #endif // __GSMMODEM_H__  #endif // __GSMMODEM_H__

Legend:
Removed from v.63  
changed lines
  Added in v.67

  ViewVC Help
Powered by ViewVC 1.1.20