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

Diff of /smsdaemon/ISmsTransceiver.h

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

revision 90 by torben, Mon Jun 16 10:21:02 2008 UTC revision 144 by torben, Sun Dec 7 16:27:34 2008 UTC
# Line 2  Line 2 
2  #define __IGSMMODEM_H__  #define __IGSMMODEM_H__
3    
4  #include <string>  #include <string>
5    #include <vector>
6    #include "Sms.h"
7    
8    
9  class IGsmModem  class IGsmModem
10  {  {
11  public:  public:
12          virtual void SendSms(std::string to, std::string message, bool allowMultipart) = 0;          virtual void SendSms(std::string to, std::string message, bool allowMultipart) = 0;
13            virtual std::vector<SMS> ReadSms(bool readAll = false) = 0;
14    
15            virtual void DeleteSms(std::string smsIndex) = 0;
16            virtual int DeleteAllSms() = 0;
17    
18          virtual ~IGsmModem() {}          virtual ~IGsmModem() {}
19  };  };
20    

Legend:
Removed from v.90  
changed lines
  Added in v.144

  ViewVC Help
Powered by ViewVC 1.1.20