| 150 | } |
| 151 | |
| 152 | void EffectAndCommandPluginManager::BatchProcessingOn(const PluginID& ID) |
| 153 | { |
| 154 | if (auto effect = EffectManager::Get().GetEffect(ID)) |
| 155 | effect->SetBatchProcessing(); |
| 156 | else if (auto command = GetAudacityCommand(ID)) |
| 157 | command->SetBatchProcessing(true); |
| 158 | } |
| 159 | |
| 160 | void EffectAndCommandPluginManager::BatchProcessingOff(const PluginID& ID) |
| 161 | { |
nothing calls this directly
no test coverage detected