aboutsummaryrefslogtreecommitdiff
path: root/Src/auth/Loginbox/templateParser.h
blob: fa4ba7f56a43304919706f8169eb8dce435489af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef NULLSOFT_AUTH_LOGIN_TEMPLATE_PARSER_HEADER
#define NULLSOFT_AUTH_LOGIN_TEMPLATE_PARSER_HEADER

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

#include <wtypes.h>
#include "../../xml/ifc_xmlreadercallback.h"
#include "./stringBuilder.h"

class obj_xml;
class LoginTemplate;

class LoginTemplateParser : public ifc_xmlreadercallback
{

public:
	LoginTemplateParser();
	~LoginTemplateParser();

public:
	HRESULT Begin(obj_xml *reader, ifc_xmlreaderparams *params);
	HRESULT End(obj_xml *reader, LoginTemplate **instance);

protected:
	void Event_XmlStartElement(const wchar_t *xmlpath, const wchar_t *xmltag, ifc_xmlreaderparams *params);
	void Event_XmlEndElement(const wchar_t *xmlpath, const wchar_t *xmltag);
	void Event_XmlCharData(const wchar_t *xmlpath, const wchar_t *xmltag, const wchar_t *value);
	void Event_XmlError(int linenum, int errcode, const wchar_t *errstr);

protected:
	LoginTemplate *object;
	StringBuilder elementString;
	
protected:
	RECVS_DISPATCH;
};

#endif //NULLSOFT_AUTH_LOGIN_TEMPLATE_PARSER_HEADER