From cc03d5aab20bde58d700b329f5fa7388698d9e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Remko=20Tron=C3=A7on?= Date: Tue, 21 Jul 2009 00:22:48 +0200 Subject: Separated Event out of EventLoop. diff --git a/Swiften/EventLoop/Event.h b/Swiften/EventLoop/Event.h new file mode 100644 index 0000000..edd35f4 --- /dev/null +++ b/Swiften/EventLoop/Event.h @@ -0,0 +1,22 @@ +#pragma once + +#include +#include + +#include "Swiften/EventLoop/EventOwner.h" + +namespace Swift { + struct Event { + Event(boost::shared_ptr owner, const boost::function& callback) : + owner(owner), callback(callback) { + } + + bool operator==(const Event& o) const { + return o.id == id; + } + + unsigned int id; + boost::shared_ptr owner; + boost::function callback; + }; +} diff --git a/Swiften/EventLoop/EventLoop.h b/Swiften/EventLoop/EventLoop.h index bf6f929..2b45288 100644 --- a/Swiften/EventLoop/EventLoop.h +++ b/Swiften/EventLoop/EventLoop.h @@ -4,6 +4,8 @@ #include #include +#include "Swiften/EventLoop/Event.h" + namespace Swift { class EventOwner; class EventLoop { @@ -15,20 +17,6 @@ namespace Swift { void removeEventsFromOwner(boost::shared_ptr owner); protected: - struct Event { - Event(boost::shared_ptr owner, const boost::function& callback) : - owner(owner), callback(callback) { - } - - bool operator==(const Event& o) const { - return o.id == id; - } - - unsigned int id; - boost::shared_ptr owner; - boost::function callback; - }; - /** * Reimplement this to call handleEvent(event) from the thread in which * the event loop is residing. -- cgit v0.10.2-6-g49f6