summaryrefslogtreecommitdiff
path: root/src/instrumentparser.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-06-07 23:48:25 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-06-07 23:52:06 +0200
commitb6737efa307bb6dca6663bf8970dd0d444aa0af3 (patch)
tree50d4f78b8902a29a1129927a5d02ddde97a2cf87 /src/instrumentparser.h
parent7c50c15ede76869489a94503fa22028180f41cff (diff)
Store bleed control support in settings.
Diffstat (limited to 'src/instrumentparser.h')
-rw-r--r--src/instrumentparser.h6
1 files changed, 5 insertions, 1 deletions
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 <memory>
#include <vector>
+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;
};