diff options
Diffstat (limited to 'Swiften/Parser/ComponentHandshakeParser.h')
-rw-r--r-- | Swiften/Parser/ComponentHandshakeParser.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/Parser/ComponentHandshakeParser.h b/Swiften/Parser/ComponentHandshakeParser.h index b9e4e76..5f4af80 100644 --- a/Swiften/Parser/ComponentHandshakeParser.h +++ b/Swiften/Parser/ComponentHandshakeParser.h @@ -13,16 +13,16 @@ #include <Swiften/Parser/GenericElementParser.h> namespace Swift { - class SWIFTEN_API ComponentHandshakeParser : public GenericElementParser<ComponentHandshake> { - public: - ComponentHandshakeParser(); + class SWIFTEN_API ComponentHandshakeParser : public GenericElementParser<ComponentHandshake> { + public: + ComponentHandshakeParser(); - virtual void handleStartElement(const std::string&, const std::string& ns, const AttributeMap&); - virtual void handleEndElement(const std::string&, const std::string& ns); - virtual void handleCharacterData(const std::string&); + virtual void handleStartElement(const std::string&, const std::string& ns, const AttributeMap&); + virtual void handleEndElement(const std::string&, const std::string& ns); + virtual void handleCharacterData(const std::string&); - private: - int depth; - std::string text; - }; + private: + int depth; + std::string text; + }; } |