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/instrumentparser.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/instrumentparser.h') diff --git a/src/instrumentparser.h b/src/instrumentparser.h index 512f12f..e87489f 100644 --- a/src/instrumentparser.h +++ b/src/instrumentparser.h @@ -41,13 +41,15 @@ public: virtual int parseFile(const std::string& filename) override; - std::vector channellist; + std::vector channellist; protected: virtual void startTag(const std::string& name, const attr_t& attr) override; virtual void endTag(const std::string& name) override; private: + InstrumentChannel* addOrGetChannel(const std::string& name); + Instrument& instrument; Sample* sample{nullptr}; -- cgit v1.2.3