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/Elements | |
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/Elements')
-rw-r--r-- | Swiften/Elements/MIXUserPreference.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Swiften/Elements/MIXUserPreference.h b/Swiften/Elements/MIXUserPreference.h new file mode 100644 index 0000000..cd1311c --- /dev/null +++ b/Swiften/Elements/MIXUserPreference.h @@ -0,0 +1,36 @@ +/* + * 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/Elements/Form.h> +#include <Swiften/Elements/Payload.h> + +namespace Swift { + class SWIFTEN_API MIXUserPreference : public Payload { + public: + using ref = std::shared_ptr<MIXUserPreference>; + + public: + + MIXUserPreference() {} + + std::shared_ptr<Form> getData() const { + return data_; + } + + void setData(std::shared_ptr<Form> value) { + this->data_ = value ; + } + + + private: + std::shared_ptr<Form> data_; + }; +} |