root/library/tests/unittest-cpp/Posix/TimeHelpers.h @ 706

Revision 706, 291 bytes (checked in by smidl, 15 years ago)

eol-native

  • Property svn:eol-style set to native
Line 
1#ifndef UNITTEST_TIMEHELPERS_H
2#define UNITTEST_TIMEHELPERS_H
3
4#include <sys/time.h>
5
6namespace UnitTest {
7
8class Timer {
9public:
10        Timer();
11        void Start();
12        double GetTimeInMs() const;
13
14private:
15        struct timeval m_startTime;
16};
17
18
19namespace TimeHelpers {
20void SleepMs ( int ms );
21}
22
23
24}
25
26#endif
Note: See TracBrowser for help on using the browser.