| 598 | } |
| 599 | |
| 600 | void Connection::emitInterfacesRemovedSignal(const ObjectPath& objectPath) |
| 601 | { |
| 602 | auto r = sdbus_->sd_bus_emit_object_removed(bus_.get(), objectPath.c_str()); |
| 603 | |
| 604 | SDBUS_THROW_ERROR_IF(r < 0, "Failed to emit InterfacesRemoved signal for all registered interfaces", -r); |
| 605 | } |
| 606 | |
| 607 | void Connection::emitInterfacesRemovedSignal( const ObjectPath& objectPath |
| 608 | , const std::vector<InterfaceName>& interfaces ) |
nothing calls this directly
no test coverage detected