| 192 | |
| 193 | template <typename T> |
| 194 | std::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 | |
| 206 | template <typename T> |
no test coverage detected