MCPcopy Create free account
hub / github.com/audacity/audacity / IsPluginEnabled

Method IsPluginEnabled

libraries/lib-module-manager/PluginManager.cpp:1121–1127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1119}
1120
1121bool PluginManager::IsPluginEnabled(const PluginID & ID)
1122{
1123 if (auto iter = mRegisteredPlugins.find(ID); iter == mRegisteredPlugins.end())
1124 return false;
1125 else
1126 return iter->second.IsEnabled();
1127}
1128
1129void PluginManager::EnablePlugin(const PluginID & ID, bool enable)
1130{

Callers

nothing calls this directly

Calls 3

findMethod · 0.45
endMethod · 0.45
IsEnabledMethod · 0.45

Tested by

no test coverage detected