summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIInterfaces')
-rw-r--r--Swift/Controllers/UIInterfaces/ChatListWindow.cpp8
-rw-r--r--Swift/Controllers/UIInterfaces/ChatListWindow.h2
2 files changed, 10 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindow.cpp b/Swift/Controllers/UIInterfaces/ChatListWindow.cpp
new file mode 100644
index 0000000..9d6c0a5
--- /dev/null
+++ b/Swift/Controllers/UIInterfaces/ChatListWindow.cpp
@@ -0,0 +1,8 @@
+#include "Swift/Controllers/UIInterfaces/ChatListWindow.h"
+
+namespace Swift {
+
+ChatListWindow::~ChatListWindow() {
+}
+
+}
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindow.h b/Swift/Controllers/UIInterfaces/ChatListWindow.h
index 2883d5c..ae60203 100644
--- a/Swift/Controllers/UIInterfaces/ChatListWindow.h
+++ b/Swift/Controllers/UIInterfaces/ChatListWindow.h
@@ -7,6 +7,8 @@
namespace Swift {
class ChatListWindow {
public:
+ virtual ~ChatListWindow();
+
virtual void addMUCBookmark(boost::shared_ptr<MUCBookmark> bookmark) = 0;
virtual void removeMUCBookmark(boost::shared_ptr<MUCBookmark> bookmark) = 0;
};