| 31 | } |
| 32 | |
| 33 | PluginManager::PluginManager(const std::shared_ptr<RdApplication>& app) { |
| 34 | this->app_ = app; |
| 35 | this->context_ = app->GetContext(); |
| 36 | settings_ = RdSettings::Instance(); |
| 37 | } |
| 38 | |
| 39 | void PluginManager::LoadAllPlugins() { |
| 40 | auto base_path = QCoreApplication::applicationDirPath(); |
nothing calls this directly
no test coverage detected