| 81 | } |
| 82 | |
| 83 | juce::AudioProcessor::BusesProperties ProcessorBase::getDefaultProperties() |
| 84 | { |
| 85 | return BusesProperties() |
| 86 | #if !JucePlugin_IsMidiEffect |
| 87 | #if !JucePlugin_IsSynth |
| 88 | .withInput("Input", juce::AudioChannelSet::stereo(), true) |
| 89 | #endif |
| 90 | .withOutput("Output", juce::AudioChannelSet::stereo(), true) |
| 91 | #endif |
| 92 | ; |
| 93 | } |
| 94 | |
| 95 | juce::AudioProcessorEditor* ProcessorBase::createEditor() |
| 96 | { |
nothing calls this directly
no outgoing calls
no test coverage detected