diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-09-02 10:30:02 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-09-02 10:30:02 +0200 |
commit | e37c5f5048bb440140dc56ce773d105fc2129385 (patch) | |
tree | 0dfe0ab9faec524fd1ee085c6cf763aa15484331 /src/channel.h | |
parent | 6a96bcf1659d07cd3a7f7e65519007abfaeda2a0 (diff) |
Implement master bleed control in the instrument parser and engine.
Diffstat (limited to 'src/channel.h')
-rw-r--r-- | src/channel.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/channel.h b/src/channel.h index 6cfee81..52b2a9b 100644 --- a/src/channel.h +++ b/src/channel.h @@ -43,6 +43,13 @@ public: channel_t num; }; -typedef Channel InstrumentChannel; +class InstrumentChannel + : public Channel +{ +public: + InstrumentChannel(const std::string& name = ""); + + bool main{true}; +}; typedef std::vector<Channel> Channels; |