| 1404 | } |
| 1405 | |
| 1406 | void Item::reset_actor(const bool recursive) { |
| 1407 | set_actor_addr_direct(caf::actor_addr()); |
| 1408 | if (recursive) |
| 1409 | for (auto &i : *this) |
| 1410 | i.reset_actor(recursive); |
| 1411 | } |
| 1412 | |
| 1413 | void Item::bind_item_pre_event_func(ItemEventFunc fn, const bool recursive) { |
| 1414 | recursive_bind_pre_ = recursive; |
no outgoing calls
no test coverage detected