diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-04-06 10:00:07 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-04-06 10:00:07 (GMT) |
commit | 2bfc35aebd04a6fa969b8909bbc7d06cef3821c4 (patch) | |
tree | e917f503568ad3206f12304ca7fda04b5502af8f /Swift/Controllers/UIInterfaces | |
parent | 5e87304f8e31adeddcba41879057093e65047493 (diff) | |
download | swift-contrib-2bfc35aebd04a6fa969b8909bbc7d06cef3821c4.zip swift-contrib-2bfc35aebd04a6fa969b8909bbc7d06cef3821c4.tar.bz2 |
Fix compilation.
Diffstat (limited to 'Swift/Controllers/UIInterfaces')
-rw-r--r-- | Swift/Controllers/UIInterfaces/ChatListWindow.cpp | 8 | ||||
-rw-r--r-- | Swift/Controllers/UIInterfaces/ChatListWindow.h | 2 |
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; }; |