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