| 232 | } |
| 233 | |
| 234 | bool Multiband::isParamInArray(juce::String paramName, const std::vector<juce::String>& paramArray) |
| 235 | { |
| 236 | for (const auto& name : paramArray) |
| 237 | { |
| 238 | if (paramName == name) |
| 239 | { |
| 240 | return true; |
| 241 | } |
| 242 | } |
| 243 | return false; |
| 244 | } |
| 245 | |
| 246 | void Multiband::initParameters(int bandindex) |
| 247 | { |
nothing calls this directly
no outgoing calls
no test coverage detected