| 68 | } |
| 69 | |
| 70 | TimedCalls::CallData::CallData(unsigned id, TimePoint at, std::function<void ()> fn) : |
| 71 | id(id), |
| 72 | at(at), |
| 73 | interval(Duration::zero()), |
| 74 | fn(fn) |
| 75 | { |
| 76 | } |
| 77 | |
| 78 | TimedCalls::CallData::CallData(unsigned id, TimePoint at, Duration interval, std::function<void ()> fn) : |
| 79 | id(id), |
nothing calls this directly
no outgoing calls
no test coverage detected