gremlin/src/common/Time.h

18 lines
213 B
C
Raw Normal View History

2011-01-12 22:05:22 +01:00
/*
* Timer.h
*
* Created on: 12.01.2011
* Author: gmueller
*/
#ifndef TIME_H_
#define TIME_H_
class PerformanceTimer {
public:
static double get();
static void set(double);
};
#endif /* TIME_H_ */