--- smsdaemon/SmsDaemon.h 2008/12/07 20:18:20 148 +++ smsdaemon/SmsDaemon.h 2008/12/18 06:53:29 196 @@ -1,7 +1,7 @@ #ifndef __SMSDAEMON_H__ #define __SMSDAEMON_H__ -#include "IGsmModem.h" +#include "ISmsTransceiver.h" #include #include @@ -11,8 +11,8 @@ class SmsDaemon { public: - SmsDaemon(IGsmModem& modem) - : _modem(modem) {} + SmsDaemon(ISmsTransceiver& modem) + : _modem(modem) {} void Start(); @@ -24,7 +24,7 @@ void MainLoop(); - IGsmModem& _modem; + ISmsTransceiver& _modem; timeval _lastSmsCheck; };