1
0

14 lines
112 B
C
Raw Normal View History

#pragma once
#include <time.h>
class cTimer
{
public:
cTimer()
{}
double diffclock(clock_t, clock_t);
};