summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-06-26 07:56:42 (GMT)
committerCatalin Badea <catalin.badea392@gmail.com>2012-06-26 07:56:42 (GMT)
commit88ef15d265a9ff9ab40ac5d90d14af08b0f8c4dd (patch)
treefd349b0adb02c8b0c956154efa7ebf915b1ebe4f /Swift/Controllers/HistoryController.h
parentcba5a2aa6db557102998028977e4d84d25181304 (diff)
downloadswift-contrib-88ef15d265a9ff9ab40ac5d90d14af08b0f8c4dd.zip
swift-contrib-88ef15d265a9ff9ab40ac5d90d14af08b0f8c4dd.tar.bz2
Use seperate controllers for viewing/handling history
Diffstat (limited to 'Swift/Controllers/HistoryController.h')
-rw-r--r--Swift/Controllers/HistoryController.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/Swift/Controllers/HistoryController.h b/Swift/Controllers/HistoryController.h
index 320b26e..dedf840 100644
--- a/Swift/Controllers/HistoryController.h
+++ b/Swift/Controllers/HistoryController.h
@@ -6,29 +6,10 @@
#pragma once
-#include <Swiften/Base/boost_bsignals.h>
-#include <boost/bind.hpp>
-#include <boost/shared_ptr.hpp>
-
-#include <Swift/Controllers/UIEvents/UIEventStream.h>
+#include <Swiften/JID/JID.h>
namespace Swift {
- class HistoryWindowFactory;
- class HistoryWindow;
- class Roster;
class HistoryController {
- public:
- HistoryController(UIEventStream* uiEventStream, HistoryWindowFactory* historyWindowFactory);
- ~HistoryController();
-
- private:
- void handleUIEvent(boost::shared_ptr<UIEvent> event);
-
- private:
- UIEventStream* uiEventStream_;
- HistoryWindowFactory* historyWindowFactory_;
- HistoryWindow* historyWindow_;
- Roster* roster_;
};
}