#ifndef __SHELLEXECPLUGIN_H__ #define __SHELLEXECPLUGIN_H__ #include "Plugin.h" class ShellExecPlugin : public Plugin { public: ShellExecPlugin(std::string pluginCommand, std::string exeCommand); virtual void Execute(IGsmModem& modem, SMS& sms); virtual ~ShellExecPlugin() {} private: std::string _exeCommand; }; #endif // __SHELLEXECPLUGIN_H__