From 4484f6deea0e098a140e878484d020bec839d1bd Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Thu, 1 Jan 2015 18:06:04 +0100 Subject: Using CharReader instead of inputstream in Parser function --- src/plugins/xml/XmlParser.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/xml/XmlParser.hpp') diff --git a/src/plugins/xml/XmlParser.hpp b/src/plugins/xml/XmlParser.hpp index b19af1e..62f0128 100644 --- a/src/plugins/xml/XmlParser.hpp +++ b/src/plugins/xml/XmlParser.hpp @@ -52,11 +52,11 @@ public: * Parses the given input stream as XML file and returns the parsed * top-level node. * - * @param is is the input stream that will be parsed. + * @param reader is the CharReader from which the input should be read. * @param ctx is a reference to the ParserContext instance that should be * used. */ - Rooted parse(std::istream &is, ParserContext &ctx) override; + Rooted parse(CharReader &reader, ParserContext &ctx) override; using Parser::parse; }; -- cgit v1.2.3