diff options
Diffstat (limited to 'Swiften/Parser/AuthChallengeParser.h')
-rw-r--r-- | Swiften/Parser/AuthChallengeParser.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/Parser/AuthChallengeParser.h b/Swiften/Parser/AuthChallengeParser.h index 464f0c1..48e2bfb 100644 --- a/Swiften/Parser/AuthChallengeParser.h +++ b/Swiften/Parser/AuthChallengeParser.h @@ -13,16 +13,16 @@ #include <Swiften/Parser/GenericElementParser.h> namespace Swift { - class SWIFTEN_API AuthChallengeParser : public GenericElementParser<AuthChallenge> { - public: - AuthChallengeParser(); + class SWIFTEN_API AuthChallengeParser : public GenericElementParser<AuthChallenge> { + public: + AuthChallengeParser(); - 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; + }; } |