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

Diff of /smsdaemon/Plugin.h

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

revision 44 by torben, Wed Jun 11 08:25:34 2008 UTC revision 184 by torben, Fri Dec 12 14:06:11 2008 UTC
# Line 7  Line 7 
7   * Abstract parent class for a sms-daemon plugin.   * Abstract parent class for a sms-daemon plugin.
8   */   */
9    
 #include "Sms.h"  
10    
11  class IGsmModem;  class ISmsTransceiver;
12    class SMS;
13    
14  class Plugin  class Plugin
15  {  {
# Line 21  public: Line 21  public:
21           * Note: the plugin is responsible for parsing and validating the arguments,           * Note: the plugin is responsible for parsing and validating the arguments,
22           * and if necessary write a error message back to the user.           * and if necessary write a error message back to the user.
23           */           */
24          virtual void Execute(IGsmModem& modem, SMS& sms) = 0;          virtual void Execute(ISmsTransceiver& modem, SMS& sms) = 0;
25    
26          /*          /*
27           * returns the command that triggers this plugin, for example:  "myplugin"           * returns the command that triggers this plugin, for example:  "myplugin"
# Line 33  public: Line 33  public:
33           */           */
34          virtual std::string GetDescription() {return _description;}          virtual std::string GetDescription() {return _description;}
35    
36    
37            /*
38         *  A helper plugin is not accessible to the client but can be used to build a proxy / decorater plugin
39         */
40            virtual bool IsHelper() {return false;}
41    
42          virtual ~Plugin() {}          virtual ~Plugin() {}
43  protected:  protected:
44    

Legend:
Removed from v.44  
changed lines
  Added in v.184

  ViewVC Help
Powered by ViewVC 1.1.20