diff options
Diffstat (limited to 'Swiften/Parser/ExpatParser.h')
| -rw-r--r-- | Swiften/Parser/ExpatParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Parser/ExpatParser.h b/Swiften/Parser/ExpatParser.h index 7583339..34d790d 100644 --- a/Swiften/Parser/ExpatParser.h +++ b/Swiften/Parser/ExpatParser.h @@ -10,19 +10,19 @@ #include <boost/noncopyable.hpp> #include <Swiften/Base/API.h> #include <Swiften/Parser/XMLParser.h> namespace Swift { class SWIFTEN_API ExpatParser : public XMLParser, public boost::noncopyable { public: - ExpatParser(XMLParserClient* client); + ExpatParser(XMLParserClient* client, bool allowComments = false); ~ExpatParser(); bool parse(const std::string& data, bool finalData = false); void stopParser(); private: struct Private; const std::unique_ptr<Private> p; |
Swift