JS8Call-Improved master
Loading...
Searching...
No Matches
sleep.h
1// -*- Mode: C++ -*-
2#ifndef SLEEP_H
3#define SLEEP_H
4#include <qthread.h>
5
6class Sleep : public QThread {
7 public:
8 static void msleep(int ms) { QThread::msleep(ms); }
9 static int idealThreadCount() { return QThread::idealThreadCount(); }
10};
11
12#endif // SLEEP_H
Definition sleep.h:6