| 54 | } |
| 55 | |
| 56 | void ClientInterfaceObjectManager::addInterface( |
| 57 | common::ClientInterfacePtr const &iface) { |
| 58 | auto pin = iface; |
| 59 | const auto isNew = m_interfaces.addInterface(pin); |
| 60 | if (isNew) { |
| 61 | m_connectCallbacksOnPath(pin->getPath()); |
| 62 | } |
| 63 | } |
| 64 | void ClientInterfaceObjectManager::releaseInterface( |
| 65 | common::ClientInterfacePtr const &iface) { |
| 66 | auto pin = iface; |
nothing calls this directly
no outgoing calls
no test coverage detected