gremlin/src/common/Time.h

12 lines
174 B
C++

#ifndef TIME_H_
#define TIME_H_
namespace gln {
class PerformanceTimer {
public:
static double get();
static void set(double);
};
} // namespace grln
#endif /* TIME_H_ */