paysages3d/src/system/Time.h

22 lines
269 B
C
Raw Normal View History

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