/* * Copyright (c) 2012 Catalin Badea * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include "Swiften/Base/boost_bsignals.h" #include #include #include "Swift/Controllers/UIEvents/UIEventStream.h" namespace Swift { class HistoryWindowFactory; class HistoryWindow; class HistoryController { public: HistoryController(UIEventStream* uiEventStream, HistoryWindowFactory* historyWindowFactory); ~HistoryController(); private: void handleUIEvent(boost::shared_ptr event); private: HistoryWindowFactory* historyWindowFactory_; HistoryWindow* historyWindow_; }; }