summaryrefslogtreecommitdiffstats
path: root/src/Stopwatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Stopwatch.h')
-rw-r--r--src/Stopwatch.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/Stopwatch.h b/src/Stopwatch.h
deleted file mode 100644
index 7676b3856..000000000
--- a/src/Stopwatch.h
+++ /dev/null
@@ -1,38 +0,0 @@
-
-// Stopwatch.h
-
-// Implements the cStopwatch class that measures and logs time between its creation and destruction
-
-
-
-
-
-#pragma once
-
-
-
-
-
-class cStopwatch
-{
-public:
- cStopwatch(const AString & a_Name):
- m_Name(a_Name),
- m_StartTime(std::chrono::high_resolution_clock::now())
- {
- }
-
- ~cStopwatch()
- {
- auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - m_StartTime).count();
- LOG("Stopwatch: %s took %.03f sec", m_Name, static_cast<double>(duration) / 1000);
- }
-
-protected:
- AString m_Name;
- std::chrono::high_resolution_clock::time_point m_StartTime;
-};
-
-
-
-