--- smsdaemon/SmsDaemon.h 2008/12/07 20:58:41 149 +++ smsdaemon/SmsDaemon.h 2010/04/27 20:07:12 675 @@ -3,16 +3,18 @@ #include "ISmsTransceiver.h" + #include #include class SMS; +class EmbeddedHttp; class SmsDaemon { public: SmsDaemon(ISmsTransceiver& modem) - : _modem(modem) {} + : _modem(modem) {} void Start(); @@ -24,8 +26,11 @@ void MainLoop(); + void ReloadConfig(); + ISmsTransceiver& _modem; timeval _lastSmsCheck; + EmbeddedHttp* embeddedHttp; };