paysages3d/src/system/Timing.h

23 lines
301 B
C
Raw Normal View History

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