/* * Copyright (c) 2012 Catalin Badea * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include #include #include namespace Swift { class HistoryWindowFactory; class HistoryWindow; class Roster; class HistoryViewController { public: HistoryViewController(UIEventStream* uiEventStream, HistoryWindowFactory* historyWindowFactory); ~HistoryViewController(); private: void handleUIEvent(boost::shared_ptr event); private: UIEventStream* uiEventStream_; HistoryWindowFactory* historyWindowFactory_; HistoryWindow* historyWindow_; Roster* roster_; }; }