| 29 | class ModSource { |
| 30 | public: |
| 31 | ModSource(int idx, juce::Colour _colour): mIdx(idx), colour(_colour), mSampleRate(48000), mBlockSize(512), mOutput(0.0f) {} |
| 32 | |
| 33 | int getIdx() { return mIdx; } |
| 34 | virtual ModSourceType getType() = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected