| 26 | namespace utils { |
| 27 | |
| 28 | CallBackTimer::CallBackTimer(std::chrono::milliseconds interval, const std::function<void(void)>& func) : execute_(false), func_(func), interval_(interval) { |
| 29 | } |
| 30 | |
| 31 | CallBackTimer::~CallBackTimer() { |
| 32 | stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected