| 3 | namespace PluginHelpers |
| 4 | { |
| 5 | ProcessorBase::ProcessorBase() |
| 6 | : juce::AudioProcessor(getDefaultProperties()) |
| 7 | { |
| 8 | } |
| 9 | |
| 10 | ProcessorBase::ProcessorBase(const BusesProperties& ioLayouts) |
| 11 | : AudioProcessor(ioLayouts) |
nothing calls this directly
no outgoing calls
no test coverage detected