| 178 | struct DispatchEvent : Event |
| 179 | { |
| 180 | DispatchEvent( |
| 181 | std::unique_ptr<lambda::CallableOnce<void(ProcessBase*)>> _f, |
| 182 | const Option<const std::type_info*>& _functionType) |
| 183 | : f(std::move(_f)), |
| 184 | functionType(_functionType) |
| 185 | {} |
| 186 | |
| 187 | DispatchEvent(DispatchEvent&&) = default; |
| 188 | DispatchEvent(const DispatchEvent&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected