cctw  0.2.1
cctwthread.h
Go to the documentation of this file.
1 #ifndef CCTWTHREAD_H
2 #define CCTWTHREAD_H
3 
4 #include <QThread>
5 
6 class CctwThread : public QThread
7 {
8  Q_OBJECT
9 public:
10  explicit CctwThread(QObject *parent = 0);
11 
12 signals:
13 
14 public slots:
15 
16 public:
17  static void sleep(unsigned long sec);
18  static void msleep(unsigned long msec);
19  static void usleep(unsigned long usec);
20 };
21 
22 #endif // CCTWQTTHREAD_H
static void sleep(unsigned long sec)
Definition: cctwthread.cpp:8
CctwThread(QObject *parent=0)
Definition: cctwthread.cpp:3
static void usleep(unsigned long usec)
Definition: cctwthread.cpp:18
static void msleep(unsigned long msec)
Definition: cctwthread.cpp:13