blob: abecc71cd76ecf3b304ff8095b541b60ab575e66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef SWIFTEN_XMPPPARSERCLIENT_H
#define SWIFTEN_XMPPPARSERCLIENT_H
#include <boost/shared_ptr.hpp>
#include "Swiften/Elements/Element.h"
namespace Swift {
class XMPPParserClient
{
public:
virtual ~XMPPParserClient();
virtual void handleStreamStart() = 0;
virtual void handleElement(boost::shared_ptr<Element>) = 0;
virtual void handleStreamEnd() = 0;
};
}
#endif
|