diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/MAMFinParser.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/MAMFinParser.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Swiften/Parser/PayloadParsers/MAMFinParser.h b/Swiften/Parser/PayloadParsers/MAMFinParser.h new file mode 100644 index 0000000..08a7f16 --- /dev/null +++ b/Swiften/Parser/PayloadParsers/MAMFinParser.h @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2014 Kevin Smith and Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <boost/shared_ptr.hpp> + +#include <Swiften/Base/Override.h> +#include <Swiften/Base/API.h> +#include <Swiften/Parser/GenericPayloadParser.h> +#include <Swiften/Elements/MAMFin.h> + +namespace Swift { + class ResultSetParser; + + class SWIFTEN_API MAMFinParser : public GenericPayloadParser<MAMFin> { + public: + MAMFinParser(); + + virtual void handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) SWIFTEN_OVERRIDE; + virtual void handleEndElement(const std::string& element, const std::string&) SWIFTEN_OVERRIDE; + virtual void handleCharacterData(const std::string& data) SWIFTEN_OVERRIDE; + + enum Level { + TopLevel = 0, + PayloadLevel = 1 + }; + + private: + boost::shared_ptr<ResultSetParser> resultSetParser_; + int level_; + }; +} |