9c4c52103d6fdd909026852124672ba8b6ec95fb
[irwi] / src / onlinepollerthread.h
1 #ifndef ONLINEPOLLERTHREAD_H
2 #define ONLINEPOLLERTHREAD_H
3
4 #include <QThread>
5
6 class OnlinePollerThread : public QThread
7 {
8     Q_OBJECT
9 public:
10     //overrides QThread::run()
11     void run();
12
13 signals:
14     void online();
15
16 public:
17     void stop();
18
19 private:
20     bool running;
21 };
22
23 #endif //ONLINEPOLLERTHREAD_H