diff options
Diffstat (limited to 'Swiften/Parser/StreamFeaturesParser.h')
-rw-r--r-- | Swiften/Parser/StreamFeaturesParser.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Swiften/Parser/StreamFeaturesParser.h b/Swiften/Parser/StreamFeaturesParser.h index 1a60c3b..5af8de8 100644 --- a/Swiften/Parser/StreamFeaturesParser.h +++ b/Swiften/Parser/StreamFeaturesParser.h @@ -13,22 +13,22 @@ #include <Swiften/Parser/GenericElementParser.h> namespace Swift { - class SWIFTEN_API StreamFeaturesParser : public GenericElementParser<StreamFeatures> { - public: - StreamFeaturesParser(); + class SWIFTEN_API StreamFeaturesParser : public GenericElementParser<StreamFeatures> { + public: + StreamFeaturesParser(); - private: - void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes); - void handleEndElement(const std::string& element, const std::string& ns); - void handleCharacterData(const std::string& data); + private: + void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes); + void handleEndElement(const std::string& element, const std::string& ns); + void handleCharacterData(const std::string& data); - private: - int currentDepth_; - std::string currentText_; - bool inMechanisms_; - bool inMechanism_; - bool inAuthenticationHostname_; - bool inCompression_; - bool inCompressionMethod_; - }; + private: + int currentDepth_; + std::string currentText_; + bool inMechanisms_; + bool inMechanism_; + bool inAuthenticationHostname_; + bool inCompression_; + bool inCompressionMethod_; + }; } |