/* * 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 HistoryController { public: HistoryController(UIEventStream* uiEventStream, HistoryWindowFactory* historyWindowFactory); ~HistoryController(); private: void handleUIEvent(boost::shared_ptr event); private: UIEventStream* uiEventStream_; HistoryWindowFactory* historyWindowFactory_; HistoryWindow* historyWindow_; }; }