| 3417 | } |
| 3418 | |
| 3419 | std::map<plugin_type_e, std::set<std::string>> configuration_impl::get_plugins(const std::string& _name) const { |
| 3420 | |
| 3421 | std::map<plugin_type_e, std::set<std::string>> its_plugins; |
| 3422 | |
| 3423 | auto found_application = applications_.find(_name); |
| 3424 | if (found_application != applications_.end()) { |
| 3425 | its_plugins = found_application->second.plugins_; |
| 3426 | } |
| 3427 | |
| 3428 | return its_plugins; |
| 3429 | } |
| 3430 | |
| 3431 | void configuration_impl::set_configuration_path(const std::string& _path) { |
| 3432 | configuration_path_ = _path; |
no test coverage detected