/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #ifndef SWIFTEN_EventController_H #define SWIFTEN_EventController_H #include "Swiften/Base/boost_signalslib.h" #include #include #include "Swiften/Events/StanzaEvent.h" #include "Swiften/Events/MessageEvent.h" namespace Swift { class EventController { public: EventController(); void handleIncomingEvent(boost::shared_ptr sourceEvent); boost::signal onEventQueueLengthChange; boost::signal)> onEventQueueEventAdded; private: void handleEventConcluded(boost::shared_ptr event); std::vector > events_; }; } #endif