blob: edd35f45d8f40abb7fdc3e2f2262e05baed163b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
#include "Swiften/EventLoop/EventOwner.h"
namespace Swift {
struct Event {
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;
}
unsigned int id;
boost::shared_ptr<EventOwner> owner;
boost::function<void()> callback;
};
}
|