--- smsdaemon/plugins/EchoPlugin.cpp 2008/06/09 18:15:53 26 +++ smsdaemon/plugins/EchoPlugin.cpp 2008/06/11 08:25:34 44 @@ -1,8 +1,12 @@ #include "EchoPlugin.h" #include "GsmModem.h" +EchoPlugin::EchoPlugin() + : Plugin("echo", "Echoes all extra text back to the sender") +{ +} -void EchoPlugin::Execute(GsmModem& modem, SMS& sms) +void EchoPlugin::Execute(IGsmModem& modem, SMS& sms) { modem.SendSms(sms.sender, GetSmsData(sms) ); }