MCPcopy Create free account
hub / github.com/PDAL/PDAL / l_loadDynamic

Method l_loadDynamic

pdal/PluginManager.cpp:294–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292
293template <typename T>
294bool 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/**

Callers 1

loadDynamicMethod · 0.80

Calls 2

emptyMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected