cctw  0.2.1
cctwthread.cpp
Go to the documentation of this file.
1 #include "cctwthread.h"
2 
3 CctwThread::CctwThread(QObject *parent) :
4  QThread(parent)
5 {
6 }
7 
8 void CctwThread::sleep(unsigned long sec)
9 {
10  QThread::sleep(sec);
11 }
12 
13 void CctwThread::msleep(unsigned long msec)
14 {
15  QThread::msleep(msec);
16 }
17 
18 void CctwThread::usleep(unsigned long usec)
19 {
20  QThread::usleep(usec);
21 }
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