| 29 | } |
| 30 | |
| 31 | ScheduledCall GuiExecutorClient::CallAfter(const Clock::duration& interval, std::function<void()> fn) |
| 32 | { |
| 33 | return m_executor->CallAfter(interval, fn); |
| 34 | } |
| 35 | |
| 36 | ScheduledCall GuiExecutorClient::CallAt(const Clock::time_point& timepoint, std::function<void()> fn) |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected