paysages3d/src/system/Timing.h
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

23 lines
301 B
C++

#ifndef TIMING_H
#define TIMING_H
#include "system_global.h"
namespace paysages {
namespace system {
/**
* Timing tools.
*/
class SYSTEMSHARED_EXPORT Timing {
public:
/**
* Get a timestamp in milliseconds.
*/
static unsigned long getRelativeTimeMs();
};
}
}
#endif // TIME_H