--- smsdaemon/DebugTransceiver.h 2008/12/07 20:58:41 149 +++ smsdaemon/DebugTransceiver.h 2008/12/21 21:14:40 210 @@ -12,7 +12,7 @@ class DebugTransceiver : public ISmsTransceiver { -public: +public: DebugTransceiver() : _print(false) {} DebugTransceiver(bool print) : _print(print) {} virtual ~DebugTransceiver() {} @@ -20,14 +20,20 @@ virtual std::vector ReadSms(bool readAll=false); virtual void SendSms(std::string to, std::string message, bool allowMultipart); - virtual void DeleteSms(std::string smsIndex) {} - virtual int DeleteAllSms() { return 0;} - - std::string GetTo() {return _to;} - std::string GetMessage() {return _message;} - bool GetMultipart() {return _multipart;} + std::string GetTo() + { + return _to; + } + std::string GetMessage() + { + return _message; + } + bool GetMultipart() + { + return _multipart; + } private: std::string _to; std::string _message;