summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-07-01 09:16:34 (GMT)
committerCătălin Badea <catalin.badea392@gmail.com>2012-08-11 15:52:57 (GMT)
commitdd28860d46fb873bd9ff221f0ef639c932c22bb8 (patch)
tree7cefdbc778eff7b75f0adac82b62a5b7c87f0be1 /Swift/Controllers/HistoryViewController.h
parente9c0208eb6800538eeb9664737cf88c9dae933e0 (diff)
downloadswift-contrib-dd28860d46fb873bd9ff221f0ef639c932c22bb8.zip
swift-contrib-dd28860d46fb873bd9ff221f0ef639c932c22bb8.tar.bz2
Add nick/avatar resolvers
Diffstat (limited to 'Swift/Controllers/HistoryViewController.h')
-rw-r--r--Swift/Controllers/HistoryViewController.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Swift/Controllers/HistoryViewController.h b/Swift/Controllers/HistoryViewController.h
index 94e5df3..7dabf46 100644
--- a/Swift/Controllers/HistoryViewController.h
+++ b/Swift/Controllers/HistoryViewController.h
@@ -18,10 +18,12 @@ namespace Swift {
class Roster;
class RosterItem;
class HistoryController;
+ class NickResolver;
+ class AvatarManager;
class HistoryViewController {
public:
- HistoryViewController(UIEventStream* uiEventStream, HistoryController* historyController, HistoryWindowFactory* historyWindowFactory);
+ HistoryViewController(UIEventStream* uiEventStream, HistoryController* historyController, NickResolver* nickResolver, AvatarManager* avatarManager, HistoryWindowFactory* historyWindowFactory);
~HistoryViewController();
private:
@@ -31,6 +33,8 @@ namespace Swift {
private:
UIEventStream* uiEventStream_;
HistoryController* historyController_;
+ NickResolver* nickResolver_;
+ AvatarManager* avatarManager_;
HistoryWindowFactory* historyWindowFactory_;
HistoryWindow* historyWindow_;
Roster* roster_;