QXRD  0.11.16
qcepthread.cpp
Go to the documentation of this file.
1 #include "qcepthread.h"
2 
3 QcepThread::QcepThread(QObject *parent) :
4  QThread(parent),
5  m_Mutex(QMutex::Recursive)
6 {
7 
8 }
9 
10 void QcepThread::msleep(unsigned long t)
11 {
12  QThread::msleep(t);
13 }
14 
static void msleep(long unsigned int)
Definition: qcepthread.cpp:10
QcepThread(QObject *parent=0)
Definition: qcepthread.cpp:3