diff options
Diffstat (limited to 'Swift/QtUI/QtChatTabsBase.h')
-rw-r--r-- | Swift/QtUI/QtChatTabsBase.h | 21 |
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..b49bb10 --- /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; +}; + +} |