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

Diff of /smsdaemon/ISmsTransceiver.h

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

smsdaemon/IGsmModem.h revision 90 by torben, Mon Jun 16 10:21:02 2008 UTC smsdaemon/ISmsTransceiver.h revision 678 by torben, Tue Apr 27 21:06:53 2010 UTC
# Line 1  Line 1 
1  #ifndef __IGSMMODEM_H__  #ifndef __ISMSTRANSCEIVER_H__
2  #define __IGSMMODEM_H__  #define __ISMSTRANSCEIVER_H__
3    
4  #include <string>  #include <string>
5    #include <vector>
6    #include "Sms.h"
7    
8  class IGsmModem  
9    class ISmsTransceiver
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 ~IGsmModem() {}          virtual std::vector<SMS> ReadSms(bool readAll = false) = 0;
14    
15            virtual ~ISmsTransceiver() {}
16  };  };
17    
18    
19  #endif // __IGSMMODEM_H__  #endif // __ISMSTRANSCEIVER_H__

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

  ViewVC Help
Powered by ViewVC 1.1.20