--- smsdaemon/GsmModem.cpp 2008/06/12 12:43:29 63 +++ smsdaemon/GsmModem.cpp 2008/06/12 15:23:11 67 @@ -202,3 +202,21 @@ } + + +void DebugGsmModem::SendSms(std::string to, std::string message, bool allowMultipart) +{ + _to=to; + _message = message; + _multipart = allowMultipart; + + if (_print) + { + cout << "DebugGsmModem::SendSms --------------" << endl; + cout << "To: " << to << endl;; + cout << "Message: " << message << endl; + cout << "Multipart: " << allowMultipart << endl; + + } +} +