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