diff options
Diffstat (limited to 'Swiften/Events/Event.h')
-rw-r--r-- | Swiften/Events/Event.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Swiften/Events/Event.h b/Swiften/Events/Event.h new file mode 100644 index 0000000..b4a71f6 --- /dev/null +++ b/Swiften/Events/Event.h @@ -0,0 +1,13 @@ +#pragma once + +#include <boost/signals.hpp> +#include <boost/shared_ptr.hpp> + +namespace Swift { + class Event { + public: + Event(){}; + virtual ~Event() {}; + boost::signal<void()> onConclusion; + }; +} |