--- smsdaemon/plugins/ShellExecPlugin.h 2008/06/11 15:55:18 56 +++ smsdaemon/plugins/ShellExecPlugin.h 2008/12/19 22:29:25 205 @@ -3,19 +3,20 @@ #include "Plugin.h" - +#include class ShellExecPlugin : public Plugin { public: - ShellExecPlugin(std::string pluginCommand, std::string exeCommand, bool allowParameters); + ShellExecPlugin(std::map args); - virtual void Execute(IGsmModem& modem, SMS& sms); + virtual void Execute(ISmsTransceiver& modem, SMS& sms); virtual ~ShellExecPlugin() {} private: std::string _exeCommand; bool _allowParameters; + bool _returnOutput; };