| 70 | } |
| 71 | |
| 72 | StatisticalTimer::StatisticalTimer( ): nEvents( 0 ), nSamples( 0 ), normalize( true ) |
| 73 | { |
| 74 | #if defined( _WIN32 ) |
| 75 | // OS call to get ticks per second2 |
| 76 | ::QueryPerformanceFrequency( reinterpret_cast<LARGE_INTEGER*>( &clkFrequency ) ); |
| 77 | #else |
| 78 | clkFrequency = 1000000; |
| 79 | #endif |
| 80 | } |
| 81 | |
| 82 | StatisticalTimer::~StatisticalTimer( ) |
| 83 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected