summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Maudsley <richard.maudsley@isode.com>2014-04-28 15:36:22 (GMT)
committerRichard Maudsley <richard.maudsley@isode.com>2014-04-28 15:41:57 (GMT)
commitc4b64106e7b9493c7b28cc653797457d5f7fbdda (patch)
tree8ff1bde1f9ade25561408f02de530f1386b32180 /Swiften/Elements/Element.cpp
parentbe642f17bfa2df7cb88ddb5fb4aa37438d9e2110 (diff)
downloadswift-c4b64106e7b9493c7b28cc653797457d5f7fbdda.zip
swift-c4b64106e7b9493c7b28cc653797457d5f7fbdda.tar.bz2
Make ToplevelElement and Payload inherit from Element.
Change-Id: I962e59a25e49d593c62fa852d60e178f349eb3c4
Diffstat (limited to 'Swiften/Elements/Element.cpp')
-rw-r--r--Swiften/Elements/Element.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Swiften/Elements/Element.cpp b/Swiften/Elements/Element.cpp
new file mode 100644
index 0000000..6014ea2
--- /dev/null
+++ b/Swiften/Elements/Element.cpp
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2010-2014 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include <Swiften/Elements/Element.h>
+
+namespace Swift {
+
+Element::~Element() {
+}
+
+}