| 81 | }; |
| 82 | |
| 83 | class AdditionalNoteCable : public INoteSource |
| 84 | { |
| 85 | public: |
| 86 | void SetPatchCableSource(PatchCableSource* cable) { mCable = cable; } |
| 87 | PatchCableSource* GetPatchCableSource(int index = 0) override { return mCable; } |
| 88 | void Flush(double time) { mNoteOutput.Flush(time); } |
| 89 | |
| 90 | private: |
| 91 | PatchCableSource* mCable{ nullptr }; |
| 92 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected