| 36 | } |
| 37 | |
| 38 | bool ProcessorBase::isMidiEffect() const |
| 39 | { |
| 40 | #if JucePlugin_IsMidiEffect |
| 41 | return true; |
| 42 | #else |
| 43 | return false; |
| 44 | #endif |
| 45 | } |
| 46 | |
| 47 | double ProcessorBase::getTailLengthSeconds() const |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected