| 27 | { |
| 28 | |
| 29 | std::shared_ptr<PluginManager> PluginManager::Make(const std::shared_ptr<RdApplication>& app) { |
| 30 | return std::make_shared<PluginManager>(app); |
| 31 | } |
| 32 | |
| 33 | PluginManager::PluginManager(const std::shared_ptr<RdApplication>& app) { |
| 34 | this->app_ = app; |
nothing calls this directly
no outgoing calls
no test coverage detected