| 6 | { |
| 7 | |
| 8 | TicksCounter::TicksCounter( const Time frequency_calc_interval ) |
| 9 | : frequency_calc_interval_(frequency_calc_interval) |
| 10 | , total_ticks_(0u) |
| 11 | , output_ticks_frequency_(0.0f) |
| 12 | , current_sample_ticks_(0u) |
| 13 | , last_update_time_( Time::CurrentTime() ) |
| 14 | {} |
| 15 | |
| 16 | TicksCounter::~TicksCounter() |
| 17 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected