summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/EventController.h')
-rw-r--r--Swift/Controllers/EventController.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Swift/Controllers/EventController.h b/Swift/Controllers/EventController.h
index 482be58..1f4051c 100644
--- a/Swift/Controllers/EventController.h
+++ b/Swift/Controllers/EventController.h
@@ -6,20 +6,20 @@
#include <boost/shared_ptr.hpp>
#include <vector>
-#include "Swiften/Events/Event.h"
+#include "Swiften/Events/StanzaEvent.h"
#include "Swiften/Events/MessageEvent.h"
namespace Swift {
class EventController {
public:
EventController();
- void handleIncomingEvent(boost::shared_ptr<Event> sourceEvent);
+ void handleIncomingEvent(boost::shared_ptr<StanzaEvent> sourceEvent);
boost::signal<void (int)> onEventQueueLengthChange;
- boost::signal<void (boost::shared_ptr<Event>)> onEventQueueEventAdded;
+ boost::signal<void (boost::shared_ptr<StanzaEvent>)> onEventQueueEventAdded;
private:
- void handleEventConcluded(boost::shared_ptr<Event> event);
- std::vector<boost::shared_ptr<Event> > events_;
+ void handleEventConcluded(boost::shared_ptr<StanzaEvent> event);
+ std::vector<boost::shared_ptr<StanzaEvent> > events_;
};
}
#endif