paysages3d/src/system/Timing.cpp

10 lines
177 B
C++
Raw Normal View History

#include "Timing.h"
2015-09-13 20:38:44 +00:00
#include <QTime>
static QTime EPOCH = QTime::currentTime();
unsigned long Timing::getRelativeTimeMs() {
2015-09-13 20:38:44 +00:00
return EPOCH.msecsTo(QTime::currentTime());
}