--- smsdaemon/plugins/ShellExecPlugin.h 2008/06/10 14:38:59 35 +++ smsdaemon/plugins/ShellExecPlugin.h 2008/06/19 14:47:52 107 @@ -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(GsmModem& modem, SMS& sms); + virtual void Execute(IGsmModem& modem, SMS& sms); virtual ~ShellExecPlugin() {} private: std::string _exeCommand; + bool _allowParameters; + bool _returnOutput; };