From e37c5f5048bb440140dc56ce773d105fc2129385 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 2 Sep 2017 10:30:02 +0200 Subject: Implement master bleed control in the instrument parser and engine. --- src/channel.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/channel.h') 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 Channels; -- cgit v1.2.3