summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtChatTabsBase.h')
-rw-r--r--Swift/QtUI/QtChatTabsBase.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Swift/QtUI/QtChatTabsBase.h b/Swift/QtUI/QtChatTabsBase.h
new file mode 100644
index 0000000..753b706
--- /dev/null
+++ b/Swift/QtUI/QtChatTabsBase.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2015 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+
+#pragma once
+
+namespace Swift {
+
+class QtTabbable;
+
+class QtChatTabsBase {
+ public:
+ QtChatTabsBase();
+ virtual ~QtChatTabsBase();
+
+ virtual void addTab(QtTabbable* tab) = 0;
+};
+
+}