summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/Element.h')
-rw-r--r--Swiften/Elements/Element.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Swiften/Elements/Element.h b/Swiften/Elements/Element.h
new file mode 100644
index 0000000..d07dae2
--- /dev/null
+++ b/Swiften/Elements/Element.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2010-2014 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include <Swiften/Base/API.h>
+
+namespace Swift {
+ class SWIFTEN_API Element {
+ public:
+ virtual ~Element();
+ };
+}