| 97 | } |
| 98 | |
| 99 | void Host::AddService(const Service::Ptr& service) |
| 100 | { |
| 101 | std::unique_lock<std::mutex> lock(m_ServicesMutex); |
| 102 | |
| 103 | m_Services[service->GetShortName()] = service; |
| 104 | } |
| 105 | |
| 106 | void Host::RemoveService(const Service::Ptr& service) |
| 107 | { |
no outgoing calls
no test coverage detected