| 65 | } |
| 66 | |
| 67 | ScheduledCall GuiExecutor::CallAfter(const Duration& interval, std::function<void ()> fn) |
| 68 | { |
| 69 | return CallAt(std::chrono::steady_clock::now() + interval, fn); |
| 70 | } |
| 71 | |
| 72 | ScheduledCall GuiExecutor::CallEvery(const Duration& interval, std::function<void ()> fn) |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected