diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h b/Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h index 15d3294..8a28d5a 100644 --- a/Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h +++ b/Swiften/Parser/PayloadParsers/JingleFileTransferHashParser.h @@ -20,15 +20,15 @@ namespace Swift { class SWIFTEN_API JingleFileTransferHashParser : public GenericPayloadParser<JingleFileTransferHash> { public: - JingleFileTransferHashParser(); - - 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); - + JingleFileTransferHashParser(); + + 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; - boost::shared_ptr<PayloadParser> currentPayloadParser; + int level; + boost::shared_ptr<PayloadParser> currentPayloadParser; }; } |