| 12 | // |
| 13 | |
| 14 | FunctionEventJob::FunctionEventJob(void (*func)(const Event &, void *), void *arg) : m_func(func), m_arg(arg) |
| 15 | { |
| 16 | // do nothing |
| 17 | } |
| 18 | |
| 19 | void FunctionEventJob::run(const Event &event) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected