| 19 | LARGE_INTEGER end_time = { 0 }; |
| 20 | |
| 21 | inline Timer() { |
| 22 | LARGE_INTEGER li; |
| 23 | QueryPerformanceFrequency(&li); |
| 24 | pc_frequency = static_cast<double>(li.QuadPart) / 1000.0; |
| 25 | } |
| 26 | |
| 27 | inline void reset() { |
| 28 | elapsed_time_milliseconds = 0.0; |
nothing calls this directly
no outgoing calls
no test coverage detected