QXRD  0.11.16
qcepthread.h
Go to the documentation of this file.
1 #ifndef QCEPTHREAD_H
2 #define QCEPTHREAD_H
3 
4 #include <QThread>
5 #include <QMutex>
6 
7 class QcepThread : public QThread
8 {
9  Q_OBJECT
10 
11 public:
12  QcepThread(QObject *parent = 0);
13 
14  static void msleep(long unsigned int);
15 
16 protected:
17  mutable QMutex m_Mutex;
18 };
19 
20 #endif // QCEPTHREAD_H
static void msleep(long unsigned int)
Definition: qcepthread.cpp:10
QMutex m_Mutex
Definition: qcepthread.h:17
QcepThread(QObject *parent=0)
Definition: qcepthread.cpp:3