| 546 | } |
| 547 | |
| 548 | bool ModuleManager::CheckPluginExist(const PluginID& providerId, const PluginPath& path) const |
| 549 | { |
| 550 | if(mProviders.find(providerId) == mProviders.end()) |
| 551 | return false; |
| 552 | |
| 553 | return mProviders.at(providerId)->CheckPluginExist(path); |
| 554 | } |
| 555 | |
| 556 | bool ModuleManager::CheckModuleLoaded(const FilePath& moduleName) const |
| 557 | { |
no test coverage detected