summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/EventLoop.h')
-rw-r--r--Swiften/EventLoop/EventLoop.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/EventLoop/EventLoop.h b/Swiften/EventLoop/EventLoop.h
index efc68ea..ab58ffc 100644
--- a/Swiften/EventLoop/EventLoop.h
+++ b/Swiften/EventLoop/EventLoop.h
@@ -9,6 +9,7 @@
#include <boost/function.hpp>
#include <boost/thread/mutex.hpp>
#include <list>
+#include <deque>
#include "Swiften/EventLoop/Event.h"
@@ -40,5 +41,7 @@ namespace Swift {
boost::mutex eventsMutex_;
unsigned int nextEventID_;
std::list<Event> events_;
+ bool handlingEvents_;
+ std::deque<Event> eventsToHandle_;
};
}