MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / FindPlugin

Method FindPlugin

src/pluginmanager.cpp:114–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114IPlugin* PluginManager::FindPlugin(const QString& name) const
115{
116 for (IPlugin* plugin : m_plugins)
117 {
118 if (QString::fromStdString(plugin->Name()) == name)
119 {
120 return plugin;
121 }
122 }
123 return nullptr;
124}
125
126bool PluginManager::LoadPluginFromPath(const QString& path)
127{

Callers

nothing calls this directly

Calls 1

NameMethod · 0.45

Tested by

no test coverage detected