#ifndef __ECHOPLUGIN_H__ #define __ECHOPLUGIN_H__ #include #include "Plugin.h" class EchoPlugin : public Plugin { public: virtual void Execute(GsmModem& modem, SMS& sms); virtual std::string GetCommand() {return "echo";} virtual std::string GetDescription() {return "Echoes all extra text back to the sender";} virtual ~EchoPlugin() {} }; #endif // __ECHOPLUGIN_H__