--- smsdaemon/DebugTransceiver.h 2008/12/12 12:54:27 180 +++ smsdaemon/DebugTransceiver.h 2008/12/18 06:53:29 196 @@ -12,7 +12,7 @@ class DebugTransceiver : public ISmsTransceiver { -public: +public: DebugTransceiver() : _print(false) {} DebugTransceiver(bool print) : _print(print) {} virtual ~DebugTransceiver() {} @@ -20,13 +20,25 @@ virtual std::vector ReadSms(bool readAll=false); virtual void SendSms(std::string to, std::string message, bool allowMultipart); - virtual int DeleteAllSms() { return 0;} + 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;