@brief Start timer thread immediately upon construction. */
| 383 | public: |
| 384 | /** @brief Start timer thread immediately upon construction. */ |
| 385 | MEM_NO_INSTRUMENT memTimer() : _tick(0) |
| 386 | { |
| 387 | _thread = new std::thread(std::bind(&memTimer::fakeTimer, this)); |
| 388 | } |
| 389 | |
| 390 | /** @brief Stops timer thread on destruction. */ |
| 391 | MEM_NO_INSTRUMENT ~memTimer() |
nothing calls this directly
no outgoing calls
no test coverage detected