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

Method l_description

pdal/PluginManager.cpp:194–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192
193template <typename T>
194std::string PluginManager<T>::l_description(const std::string& name)
195{
196 std::string descrip;
197
198 std::lock_guard<std::mutex> lock(m_pluginMutex);
199 auto ei = m_plugins.find(name);
200 if (ei != m_plugins.end())
201 descrip = ei->second.description;
202 return descrip;
203}
204
205
206template <typename T>

Callers 1

descriptionMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected