diff options
author | Catalin Badea <catalin.badea392@gmail.com> | 2012-07-01 09:16:34 (GMT) |
---|---|---|
committer | Catalin Badea <catalin.badea392@gmail.com> | 2012-07-01 09:16:34 (GMT) |
commit | 583809c9f96bbf35196c416a1b6e44539b5ceacc (patch) | |
tree | c7847ad21e4556d3176cc1926c9f528445a9532f /Swift/Controllers/HistoryViewController.h | |
parent | 5a5e0e8328d0c2ec59478ce8a35152cc4f6b05b3 (diff) | |
download | swift-contrib-583809c9f96bbf35196c416a1b6e44539b5ceacc.zip swift-contrib-583809c9f96bbf35196c416a1b6e44539b5ceacc.tar.bz2 |
Add nick/avatar resolvers
Diffstat (limited to 'Swift/Controllers/HistoryViewController.h')
-rw-r--r-- | Swift/Controllers/HistoryViewController.h | 6 |
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_; |