| 144 | event_manager_sync::~event_manager_sync() {} |
| 145 | |
| 146 | event_manager_sync::connection event_manager_sync::connect_impl(poly_typeid type, const void * owner, event_handler handler) |
| 147 | { |
| 148 | const connection_id new_id = ++id; |
| 149 | handlers->add(type, new_id, owner, std::move(handler)); |
| 150 | return connection(handlers, type, new_id); |
| 151 | } |
| 152 | |
| 153 | void event_manager_sync::disconnect_impl(poly_typeid type, const void * owner) { /* todo */ } |
| 154 |
nothing calls this directly
no test coverage detected