| 292 | |
| 293 | template <typename T> |
| 294 | bool PluginManager<T>::l_loadDynamic(const std::string& driverName) |
| 295 | { |
| 296 | // If the library pointer is already in the map, we've already loaded |
| 297 | // the library. |
| 298 | std::string path = getPath(driverName); |
| 299 | if (path.empty()) |
| 300 | { |
| 301 | m_log->get(LogLevel::Debug) << "No plugin file found for driver '" << |
| 302 | driverName << "'." << std::endl; |
| 303 | return false; |
| 304 | } |
| 305 | return loadByPath(path); |
| 306 | } |
| 307 | |
| 308 | |
| 309 | /** |
no test coverage detected