| 22 | } |
| 23 | |
| 24 | void Stopwatch::reset() |
| 25 | { |
| 26 | m_begin = 0; |
| 27 | m_end = 0; |
| 28 | KeQueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(&m_freq)); |
| 29 | } |
| 30 | |
| 31 | void Stopwatch::start() |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected