| 66 | } |
| 67 | |
| 68 | bool SetConfigValue( const EffectDefinitionInterface& ident, |
| 69 | PluginSettings::ConfigurationType type, |
| 70 | const RegistryPath & group, const RegistryPath & key, |
| 71 | ConfigConstReference value) |
| 72 | { |
| 73 | auto &pluginManager = PluginManager::Get(); |
| 74 | const auto &id = pluginManager.GetID(&ident); |
| 75 | return pluginManager.SetConfigValue(type, id, group, key, value); |
| 76 | } |
| 77 | |
| 78 | bool RemoveConfigSubgroup( const EffectDefinitionInterface &ident, |
| 79 | PluginSettings::ConfigurationType type, |
no test coverage detected