summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-08-28 21:45:20 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-08-28 21:54:37 (GMT)
commit30bbee78103b3dc125eba0f81c25e5399032d6ef (patch)
tree8aba7a0099eb6fff7c8b73a113b8a8b561d15706 /Swiften/Parser/EnableSessionManagementParser.h
parent7f1bcf974efac0ed87b6f8f639e1fdc16a89eb09 (diff)
downloadswift-30bbee78103b3dc125eba0f81c25e5399032d6ef.zip
swift-30bbee78103b3dc125eba0f81c25e5399032d6ef.tar.bz2
Added elements, parsers & serializers for XEP-0198 Stanza Acking.
Diffstat (limited to 'Swiften/Parser/EnableSessionManagementParser.h')
-rw-r--r--Swiften/Parser/EnableSessionManagementParser.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Swiften/Parser/EnableSessionManagementParser.h b/Swiften/Parser/EnableSessionManagementParser.h
new file mode 100644
index 0000000..8a878fd
--- /dev/null
+++ b/Swiften/Parser/EnableSessionManagementParser.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include "Swiften/Parser/GenericElementParser.h"
+#include "Swiften/Elements/EnableSessionManagement.h"
+
+namespace Swift {
+ class EnableSessionManagementParser : public GenericElementParser<EnableSessionManagement> {
+ public:
+ EnableSessionManagementParser() : GenericElementParser<EnableSessionManagement>() {}
+ };
+}