MCPcopy Create free account
hub / github.com/DamRsn/NeuralNote / getDefaultProperties

Method getDefaultProperties

NeuralNote/PluginSources/ProcessorBase.cpp:83–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83juce::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
95juce::AudioProcessorEditor* ProcessorBase::createEditor()
96{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected