| 31 | class Timer { |
| 32 | public: |
| 33 | Timer() : sys_time("Sys.time") { Reset(); } |
| 34 | void Start() { start_t = getFractionalSeconds() ; } |
| 35 | void Stop() { |
| 36 | end_t = getFractionalSeconds(); |
nothing calls this directly
no outgoing calls
no test coverage detected