mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-13 03:54:14 +01:00
This will allow us to build a parent project for qt-creator that sits above both openpilotgcs and uavobjgenerator so that we can build both projects at the same time. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
14 lines
213 B
C++
14 lines
213 B
C++
#ifndef DELAY_H
|
|
#define DELAY_H
|
|
#include <QThread>
|
|
|
|
class delay : public QThread
|
|
{
|
|
public:
|
|
static void msleep(unsigned long msecs)
|
|
{
|
|
QThread::msleep(msecs);
|
|
}
|
|
};
|
|
#endif // DELAY_H
|