Commit 0c273c47 authored by Tomaz Canabrava's avatar Tomaz Canabrava

Found a unused class, safe to remove.

Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
parent 3c531816
......@@ -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