| 24 | MinimalModuleContainer::~MinimalModuleContainer() = default; |
| 25 | |
| 26 | void MinimalModuleContainer::installNameServer(ExecutableBase& m) |
| 27 | { |
| 28 | m.nameServer_ = std::bind(&MinimalModuleContainer::nameServerImpl, this, std::placeholders::_1); |
| 29 | } |
| 30 | |
| 31 | ExecutableBase::Ptr MinimalModuleContainer::nameServerImpl(const std::string& name) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected