diff options
author | André Nusser <andre.nusser@googlemail.com> | 2016-03-23 18:24:29 +0100 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-23 18:24:29 +0100 |
commit | 5c04b951ffe53e1a31182bb0814908af8d7f0a6f (patch) | |
tree | 5499759253aaa92abfa853aa55fede9e9029f140 /src/instrumentparser.h | |
parent | e8fcde7654f2d7dce494ebe1ca27abbebc3908b4 (diff) |
Do the file related actions in SAXParser.
Diffstat (limited to 'src/instrumentparser.h')
-rw-r--r-- | src/instrumentparser.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/instrumentparser.h b/src/instrumentparser.h index 50e05ef..951b8ed 100644 --- a/src/instrumentparser.h +++ b/src/instrumentparser.h @@ -35,19 +35,17 @@ class InstrumentParser : public SAXParser { public: - InstrumentParser(const std::string& instrfile, Instrument &instrument); - ~InstrumentParser(); + InstrumentParser(Instrument &instrument); + + virtual int parseFile(const std::string& filename) override; std::vector<InstrumentChannel*> channellist; protected: - int readData(std::string& data, std::size_t size) override; - virtual void startTag(const std::string& name, const attr_t& attr) override; virtual void endTag(const std::string& name) override; private: - FILE* fd{nullptr}; Instrument& instrument; Sample* s{nullptr}; |