summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2017-06-26 11:08:07 (GMT)
committerTobias Markmann <tm@ayena.de>2017-07-12 09:06:44 (GMT)
commit8f4d198c4d3aa55a5215061e84572d5faf4e4117 (patch)
tree95a6b0b29c10d9ab24ba16b1058640510b98370d /Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp
parente5111d0125ad107e12150e0cb5447209189c5338 (diff)
downloadswift-8f4d198c4d3aa55a5215061e84572d5faf4e4117.zip
swift-8f4d198c4d3aa55a5215061e84572d5faf4e4117.tar.bz2
Add MIXSetNick Element, its Parser and Serializer
License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: Added tests for MIXSetNick Parser and Serializer based on examples in XEP 0369, which passes. Tested on Ubuntu 16.04 LTS. Change-Id: I23081637f2aecf9fc5abc63147d01bfd4d2bb2f1
Diffstat (limited to 'Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp')
-rw-r--r--Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp b/Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp
new file mode 100644
index 0000000..34fec70
--- /dev/null
+++ b/Swiften/Parser/PayloadParsers/MIXSetNickParser.cpp
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 2017 Tarun Gupta
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#include <Swiften/Parser/PayloadParsers/MIXSetNickParser.h>
+
+namespace Swift {
+
+void MIXSetNickParser::handleTree(ParserElement::ref root) {
+ for (const auto& child : root->getAllChildren()) {
+ if (child->getName() == "nick" && child->getNamespace() == root->getNamespace()) {
+ getPayloadInternal()->setNick(child->getText());
+ }
+ }
+}
+
+}