#ifndef TIMER #define TIMER 1 #include #include #include class Timer { private: struct timeval start; double timediff(struct timeval, struct timeval); public: Timer(); ~Timer(); void Reset(); double Check(); }; #endif