-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathevent.hpp
45 lines (37 loc) · 971 Bytes
/
event.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Nonolith Connect
// https://github.com/nonolith/connect
// Publish/subscribe events helper
// Released under the terms of the GNU GPLv3+
// (C) 2012 Nonolith Labs, LLC
// Authors:
// Kevin Mehall <[email protected]>
#pragma once
#ifndef INCLUDE_FROM_DATASERVER_HPP
#error "device.hpp should not be included directly"
#endif
#include <boost/function.hpp>
typedef boost::function<void()> void_function;
class Event;
class EventListener{
public:
EventListener(): event(0){}
EventListener(Event& e, void_function h){subscribe(e, h);}
~EventListener(){unsubscribe();}
void subscribe(Event& e, void_function h);
void unsubscribe();
Event* event;
void_function handler;
private:
EventListener(const EventListener&);
EventListener& operator=(const EventListener&);
};
class Event{
public:
Event(){}
~Event();
void notify();
std::set<EventListener*> listeners;
private:
Event(const Event&);
Event& operator=(const Event&);
};