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

Method l_link

pdal/PluginManager.cpp:165–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163
164template <typename T>
165std::string PluginManager<T>::l_link(const std::string& name)
166{
167 std::string link;
168
169 std::lock_guard<std::mutex> lock(m_pluginMutex);
170 auto ei = m_plugins.find(name);
171
172 // Try to find the plugin given the name and use
173 // the computed link name when we do
174 if (ei != m_plugins.end())
175 return get().link(name);
176 return std::string("");
177}
178
179
180/**

Callers

nothing calls this directly

Calls 4

getFunction · 0.50
findMethod · 0.45
endMethod · 0.45
linkMethod · 0.45

Tested by

no test coverage detected