Timer: Dead code removal

This commit is contained in:
Paul Beckingham 2015-07-17 14:26:36 -04:00
parent 87b1809ef4
commit 59b98cf302
2 changed files with 0 additions and 56 deletions

View file

@ -52,25 +52,6 @@ private:
unsigned long _total;
};
// HighResTimer is a stop watch with microsecond resolution.
class HighResTimer
{
public:
HighResTimer ();
~HighResTimer ();
HighResTimer (const HighResTimer&);
HighResTimer& operator= (const HighResTimer&);
void start ();
void stop ();
double total () const;
private:
struct timeval _start;
struct timeval _stop;
};
#endif
////////////////////////////////////////////////////////////////////////////////