implemented infinite backoff (fixes #311767)
[dasher.git] / Src / DasherCore / SimpleTimer.h
blob63e1c529d5968c75ece8b52ea37814cc70204574
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 class CSimpleTimer
13 public:
14 CSimpleTimer();
15 ~CSimpleTimer();
17 double GetElapsed();
19 private:
20 int m_iStartSecond;
21 int m_iStartMs;
25 #endif