| 6 | namespace tt::service { |
| 7 | |
| 8 | ServiceInstance::ServiceInstance(std::shared_ptr<const ServiceManifest> manifest) : |
| 9 | manifest(manifest), |
| 10 | service(manifest->createService()) |
| 11 | {} |
| 12 | |
| 13 | const ServiceManifest& ServiceInstance::getManifest() const { return *manifest; } |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected