diff options
Diffstat (limited to 'Swiften/Parser/XMPPParserClient.h')
-rw-r--r-- | Swiften/Parser/XMPPParserClient.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Swiften/Parser/XMPPParserClient.h b/Swiften/Parser/XMPPParserClient.h new file mode 100644 index 0000000..b8f8e46 --- /dev/null +++ b/Swiften/Parser/XMPPParserClient.h @@ -0,0 +1,19 @@ +#pragma once + +#include <boost/shared_ptr.hpp> + +#include "Swiften/Elements/Element.h" + +namespace Swift { + class String; + class ProtocolHeader; + + class XMPPParserClient { + public: + virtual ~XMPPParserClient(); + + virtual void handleStreamStart(const ProtocolHeader&) = 0; + virtual void handleElement(boost::shared_ptr<Element>) = 0; + virtual void handleStreamEnd() = 0; + }; +} |