| 222 | */ |
| 223 | template<class S> |
| 224 | ServiceRegistration<S> RegisterService(S* service, const ServiceProperties& properties = ServiceProperties()) |
| 225 | { |
| 226 | InterfaceMap servicePointers = MakeInterfaceMap<S>(service); |
| 227 | return RegisterService(servicePointers, properties); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * \brief Registers the specified service object with the specified properties |
no outgoing calls