#include "EchoPlugin.h" #include "GsmModem.h" EchoPlugin::EchoPlugin() : Plugin("echo", "Echoes all extra text back to the sender") { } void EchoPlugin::Execute(IGsmModem& modem, SMS& sms) { modem.SendSms(sms.sender, GetSmsData(sms) ); }