--- smsdaemon/plugins/ShellExecPlugin.h 2008/06/11 08:25:34 44 +++ smsdaemon/plugins/ShellExecPlugin.h 2008/12/07 20:58:41 149 @@ -8,13 +8,15 @@ class ShellExecPlugin : public Plugin { public: - ShellExecPlugin(std::string pluginCommand, std::string exeCommand); + ShellExecPlugin(std::string pluginCommand, std::string exeCommand, bool allowParameters, bool returnOutput); - virtual void Execute(IGsmModem& modem, SMS& sms); + virtual void Execute(ISmsTransceiver& modem, SMS& sms); virtual ~ShellExecPlugin() {} private: std::string _exeCommand; + bool _allowParameters; + bool _returnOutput; };