/[projects]/smsdaemon/SmsDaemon.h
ViewVC logotype

Contents of /smsdaemon/SmsDaemon.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 140 - (show annotations) (download)
Sun Dec 7 12:06:01 2008 UTC (15 years, 5 months ago) by torben
File MIME type: text/plain
File size: 313 byte(s)
Clean up header dependencies

1
2 #include "GsmModem.h"
3
4 #include <time.h>
5 #include <sys/time.h>
6
7 class SMS;
8
9 class SmsDaemon
10 {
11 public:
12 SmsDaemon(GsmModem& modem)
13 : _modem(modem) {}
14
15
16 void Start();
17 private:
18
19 void CreateLogMessage(SMS& sms,bool hasPlugin);
20
21 void CheckSms();
22
23 void MainLoop();
24
25 GsmModem& _modem;
26 timeval _lastSmsCheck;
27 };

  ViewVC Help
Powered by ViewVC 1.1.20