#include <QtCore/qthread.h>
#ifndef QTHREAD_H
#ifndef QT_NO_THREAD
class QThread: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum Priority{
      IdlePriority = 0,
      LowestPriority = 1,
      LowPriority = 2,
      NormalPriority = 3,
      HighPriority = 4,
      HighestPriority = 5,
      TimeCriticalPriority = 6,
      InheritPriority = 7,
   };
   /* ... */
};
#else // QT_NO_THREAD
#endif // QT_NO_THREAD
#endif // QTHREAD_H