From b6737efa307bb6dca6663bf8970dd0d444aa0af3 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 7 Jun 2018 23:48:25 +0200 Subject: Store bleed control support in settings. --- src/instrumentparser.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/instrumentparser.h') diff --git a/src/instrumentparser.h b/src/instrumentparser.h index e87489f..f88f2ae 100644 --- a/src/instrumentparser.h +++ b/src/instrumentparser.h @@ -32,11 +32,13 @@ #include #include +class Settings; + class InstrumentParser : public SAXParser { public: - InstrumentParser(Instrument &instrument); + InstrumentParser(Instrument &instrument, Settings& settings); virtual ~InstrumentParser() = default; virtual int parseFile(const std::string& filename) override; @@ -57,4 +59,6 @@ private: level_t lower{0}; level_t upper{0}; + + Settings& settings; }; -- cgit v1.2.3