diff options
| author | Tarun Gupta <tarun1995gupta@gmail.com> | 2017-06-19 09:42:31 (GMT) | 
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2017-07-05 20:38:46 (GMT) | 
| commit | 1f69a24bc609ce40bab2bcb40b29438b63c9bc73 (patch) | |
| tree | 585e7579abc5a906705f10d4b283883fd6b18da6 /Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h | |
| parent | 93a0f41d4af17db3e3eedb61e786fec23dbd8db9 (diff) | |
| download | swift-1f69a24bc609ce40bab2bcb40b29438b63c9bc73.zip swift-1f69a24bc609ce40bab2bcb40b29438b63c9bc73.tar.bz2  | |
Adds MIXUserPreference Element, its Parser and Serializer
License:
This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
Test-Information:
Added tests for MIXUserPreference Parser and Serializer based
on examples in XEP 0369, which passes.
Change-Id: I06595325f4cc2b34d5ab5a93a6caa00330fe0737
Diffstat (limited to 'Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h')
| -rw-r--r-- | Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h | 32 | 
1 files changed, 32 insertions, 0 deletions
diff --git a/Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h b/Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h new file mode 100644 index 0000000..505087d --- /dev/null +++ b/Swiften/Parser/PayloadParsers/MIXUserPreferenceParser.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2017 Tarun Gupta + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#pragma once + +#include <memory> + +#include <Swiften/Base/API.h> +#include <Swiften/Base/Override.h> +#include <Swiften/Elements/MIXUserPreference.h> +#include <Swiften/Parser/GenericPayloadParser.h> + +namespace Swift { +    class PayloadParser; + +    class SWIFTEN_API MIXUserPreferenceParser : public GenericPayloadParser<MIXUserPreference> { +        public: +            MIXUserPreferenceParser(); +            virtual ~MIXUserPreferenceParser(); + +            virtual void handleStartElement(const std::string& element, const std::string&, 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; + +        private: +            int level_; +            std::shared_ptr<PayloadParser> currentPayloadParser_; +    }; +}  | 
 Swift