diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/ThreadParser.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/ThreadParser.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Swiften/Parser/PayloadParsers/ThreadParser.h b/Swiften/Parser/PayloadParsers/ThreadParser.h index 270ea99..371c535 100644 --- a/Swiften/Parser/PayloadParsers/ThreadParser.h +++ b/Swiften/Parser/PayloadParsers/ThreadParser.h @@ -11,17 +11,17 @@ #include <Swiften/Parser/GenericPayloadParser.h> namespace Swift { - class SWIFTEN_API ThreadParser : public GenericPayloadParser<Thread> { - public: - ThreadParser(); - virtual ~ThreadParser(); + class SWIFTEN_API ThreadParser : public GenericPayloadParser<Thread> { + public: + ThreadParser(); + virtual ~ThreadParser(); - virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); - virtual void handleEndElement(const std::string& element, const std::string&); - virtual void handleCharacterData(const std::string& data); + virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); + virtual void handleEndElement(const std::string& element, const std::string&); + virtual void handleCharacterData(const std::string& data); - private: - int level_; - std::string text_; - }; + private: + int level_; + std::string text_; + }; } |