diff options
Diffstat (limited to 'Swiften/Events/StanzaEvent.h')
-rw-r--r-- | Swiften/Events/StanzaEvent.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Swiften/Events/StanzaEvent.h b/Swiften/Events/StanzaEvent.h new file mode 100644 index 0000000..b1dc537 --- /dev/null +++ b/Swiften/Events/StanzaEvent.h @@ -0,0 +1,18 @@ +#pragma once + +#include <boost/signals.hpp> +#include <boost/shared_ptr.hpp> + +namespace Swift { + class StanzaEvent { + public: + StanzaEvent(){concluded_ = false;}; + virtual ~StanzaEvent() {}; + void conclude() {concluded_ = true; onConclusion();}; + /** Do not call this directly from outside the class */ + boost::signal<void()> onConclusion; + bool getConcluded() {return concluded_;}; + private: + bool concluded_; + }; +} |