| 100 | } // namespace |
| 101 | |
| 102 | CppPluginSystemPtr CppPluginSystem::make(log::LoggerInterfacePtr logger) { |
| 103 | return std::make_shared<CppPluginSystem>(CppPluginSystem{std::move(logger)}); |
| 104 | } |
| 105 | |
| 106 | void CppPluginSystem::reset() { |
| 107 | // Note: do not dlclose plugins - they may be in use. |
nothing calls this directly
no outgoing calls
no test coverage detected