blob: c598f3097bd377cca35e5601699ea5d9eb3cb0d9 [file] [log] [blame]
bungeman@google.combe9ad4e2011-06-07 19:16:02 +00001#ifndef SkBenchSysTimer_DEFINED
2#define SkBenchSysTimer_DEFINED
3
4//Time
5#include <time.h>
6#warning standard clocks
7
8class BenchSysTimer {
9public:
10 void startWall();
11 void startCpu();
12 double endCpu();
13 double endWall();
14private:
15 clock_t start_cpu;
16 time_t fStartWall;
17};
18
19#endif