| 27 | } |
| 28 | |
| 29 | bool ProcessorBase::producesMidi() const |
| 30 | { |
| 31 | #if JucePlugin_ProducesMidiOutput |
| 32 | return true; |
| 33 | #else |
| 34 | return false; |
| 35 | #endif |
| 36 | } |
| 37 | |
| 38 | bool ProcessorBase::isMidiEffect() const |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected