Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/UnitTest++/src/Posix/TimeHelpers.h')
-rw-r--r--src/testing/UnitTest++/src/Posix/TimeHelpers.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/testing/UnitTest++/src/Posix/TimeHelpers.h b/src/testing/UnitTest++/src/Posix/TimeHelpers.h
deleted file mode 100644
index fdc8428..0000000
--- a/src/testing/UnitTest++/src/Posix/TimeHelpers.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef UNITTEST_TIMEHELPERS_H
-#define UNITTEST_TIMEHELPERS_H
-
-#include <sys/time.h>
-
-namespace UnitTest {
-
-class Timer
-{
-public:
- Timer();
- void Start();
- int GetTimeInMs() const;
-
-private:
- struct timeval m_startTime;
-};
-
-
-namespace TimeHelpers
-{
-void SleepMs (int ms);
-}
-
-
-}
-
-#endif