Commit 38090bfa authored by Don Gagne's avatar Don Gagne

Merge pull request #3110 from tcanabrava/remove_dead_code

Found a unused class, safe to remove.
parents dd660316 0c273c47
......@@ -62,34 +62,6 @@ public:
}
};
class SLEEP : public QThread
{
public:
/**
* @brief Set a thread to sleep for seconds
* @param s time in seconds to sleep
**/
static void sleep(unsigned long s) {
QThread::sleep(s);
}
/**
* @brief Set a thread to sleep for milliseconds
* @param ms time in milliseconds to sleep
**/
static void msleep(unsigned long ms) {
QThread::msleep(ms);
}
/**
* @brief Set a thread to sleep for microseconds
* @param us time in microseconds to sleep
**/
static void usleep(unsigned long us) {
QThread::usleep(us);
}
};
class UNITS
{
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment