diff options
Diffstat (limited to 'Swiften/Parser/XMLParser.h')
-rw-r--r-- | Swiften/Parser/XMLParser.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Swiften/Parser/XMLParser.h b/Swiften/Parser/XMLParser.h index e1f2d62..8a73c3f 100644 --- a/Swiften/Parser/XMLParser.h +++ b/Swiften/Parser/XMLParser.h @@ -11,20 +11,20 @@ #include <Swiften/Base/API.h> namespace Swift { - class XMLParserClient; + class XMLParserClient; - class SWIFTEN_API XMLParser { - public: - XMLParser(XMLParserClient* client); - virtual ~XMLParser(); + class SWIFTEN_API XMLParser { + public: + XMLParser(XMLParserClient* client); + virtual ~XMLParser(); - virtual bool parse(const std::string& data) = 0; + virtual bool parse(const std::string& data) = 0; - XMLParserClient* getClient() const { - return client_; - } + XMLParserClient* getClient() const { + return client_; + } - private: - XMLParserClient* client_; - }; + private: + XMLParserClient* client_; + }; } |