| 14 | class TimerBase { |
| 15 | public: |
| 16 | TimerBase(ExecutorRef executor, std::chrono::nanoseconds period) |
| 17 | : executor_(executor), period_(period) {} |
| 18 | |
| 19 | virtual ~TimerBase() = default; |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected