#ifndef __SHELLEXECPLUGIN_H__ #define __SHELLEXECPLUGIN_H__ #include "Plugin.h" #include class ShellExecPlugin : public Plugin { public: ShellExecPlugin(std::map args); virtual void Execute(ISmsTransceiver& modem, SMS& sms); virtual ~ShellExecPlugin() {} private: std::string _exeCommand; bool _allowParameters; bool _returnOutput; }; #endif // __SHELLEXECPLUGIN_H__