| 312 | { |
| 313 | void start() { m_ticks = getCurrentTicks(); } |
| 314 | unsigned int getElapsedMicroseconds() const { |
| 315 | return static_cast<unsigned int>(getCurrentTicks() - m_ticks); |
| 316 | } |
| 317 | //unsigned int getElapsedMilliseconds() const { |
| 318 | // return static_cast<unsigned int>(getElapsedMicroseconds() / 1000); |
| 319 | //} |
nothing calls this directly
no test coverage detected