mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
12 lines
268 B
C++
12 lines
268 B
C++
// -*- Mode: C++ -*-
|
|
#ifndef SLEEP_H
|
|
#define SLEEP_H
|
|
#include <qthread.h>
|
|
|
|
class Sleep : public QThread {
|
|
public:
|
|
static void msleep(int ms) { QThread::msleep(ms); }
|
|
static int idealThreadCount() { return QThread::idealThreadCount(); }
|
|
};
|
|
|
|
#endif // SLEEP_H
|