| 18 | } |
| 19 | |
| 20 | bool ProcessorBase::acceptsMidi() const |
| 21 | { |
| 22 | #if JucePlugin_WantsMidiInput |
| 23 | return true; |
| 24 | #else |
| 25 | return false; |
| 26 | #endif |
| 27 | } |
| 28 | |
| 29 | bool ProcessorBase::producesMidi() const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected