paysages3d/src/system/Timing.cpp
Michaël Lemaire e5372c61e4 Renamed Time to Timing
because Time.h would clash with standard lib time.h
on case insensitive file systems
2015-12-30 20:20:27 +01:00

10 lines
177 B
C++

#include "Timing.h"
#include <QTime>
static QTime EPOCH = QTime::currentTime();
unsigned long Timing::getRelativeTimeMs() {
return EPOCH.msecsTo(QTime::currentTime());
}