| 29 | } |
| 30 | |
| 31 | void Stopwatch::start() |
| 32 | { |
| 33 | m_begin = KeQueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(&m_freq)).QuadPart; |
| 34 | m_end = m_begin; |
| 35 | } |
| 36 | |
| 37 | float Stopwatch::stop() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected