| 97 | } |
| 98 | |
| 99 | void plugin_manager_impl::add_plugin(const std::shared_ptr<plugin>& _plugin, const std::string& _name) { |
| 100 | plugins_[_plugin->get_plugin_type()][_name] = _plugin; |
| 101 | } |
| 102 | |
| 103 | void* plugin_manager_impl::load_library(const std::string& _path) { |
| 104 | #ifdef _WIN32 |
nothing calls this directly
no test coverage detected