tagging release
[dasher.git] / trunk / Src / DasherCore / SimpleTimer.h
blobc174a8a76eb7a663ad88c94aef19262690b2c40b
2 // Simple millisecond accurate timer.
3 //
4 // Copyright 2004 by Keith Vertanen
6 #ifndef __SIMPLE_TIMER_H__
7 #define __SIMPLE_TIMER_H__
9 #include <time.h>
11 /// \ingroup Logging
12 /// \{
13 class CSimpleTimer
15 public:
16 CSimpleTimer();
17 ~CSimpleTimer();
19 double GetElapsed();
21 private:
22 int m_iStartSecond;
23 int m_iStartMs;
26 /// \}
28 #endif