| 43 | } |
| 44 | |
| 45 | bool PluginProcessor::acceptsMidi() const { |
| 46 | #if JucePlugin_WantsMidiInput |
| 47 | return true; |
| 48 | #else |
| 49 | return false; |
| 50 | #endif |
| 51 | } |
| 52 | |
| 53 | bool PluginProcessor::producesMidi() const { |
| 54 | #if JucePlugin_ProducesMidiOutput |
nothing calls this directly
no outgoing calls
no test coverage detected