diff options
Diffstat (limited to 'Swiften/EventLoop/Event.h')
-rw-r--r-- | Swiften/EventLoop/Event.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Swiften/EventLoop/Event.h b/Swiften/EventLoop/Event.h index 9f9fc9b..209de33 100644 --- a/Swiften/EventLoop/Event.h +++ b/Swiften/EventLoop/Event.h @@ -12,17 +12,18 @@ #include "Swiften/EventLoop/EventOwner.h" namespace Swift { - struct Event { - Event(boost::shared_ptr<EventOwner> owner, const boost::function<void()>& callback) : - owner(owner), callback(callback) { - } + class Event { + public: + Event(boost::shared_ptr<EventOwner> owner, const boost::function<void()>& callback) : + owner(owner), callback(callback) { + } - bool operator==(const Event& o) const { - return o.id == id; - } + bool operator==(const Event& o) const { + return o.id == id; + } - unsigned int id; - boost::shared_ptr<EventOwner> owner; - boost::function<void()> callback; + unsigned int id; + boost::shared_ptr<EventOwner> owner; + boost::function<void()> callback; }; } |