summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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>() {}
+ };
+}