/* * 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_bsignals.h" #include #include #include "Swift/Controllers/XMPPEvents/StanzaEvent.h" #include "Swift/Controllers/XMPPEvents/MessageEvent.h" namespace Swift { typedef std::vector > EventList; class EventController { public: EventController(); ~EventController(); void handleIncomingEvent(boost::shared_ptr sourceEvent); boost::signal onEventQueueLengthChange; boost::signal)> onEventQueueEventAdded; const EventList& getEvents() const {return events_;} void disconnectAll(); void clear(); private: void handleEventConcluded(boost::shared_ptr event); EventList events_; }; } #endif