Initial community commit
This commit is contained in:
40
Src/auth/Loginbox/commandParser.h
Normal file
40
Src/auth/Loginbox/commandParser.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#ifndef NULLSOFT_AUTH_LOGIN_COMMAND_PARSER_HEADER
|
||||
#define NULLSOFT_AUTH_LOGIN_COMMAND_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 LoginCommand;
|
||||
|
||||
class LoginCommandParser : public ifc_xmlreadercallback
|
||||
{
|
||||
|
||||
public:
|
||||
LoginCommandParser();
|
||||
~LoginCommandParser();
|
||||
|
||||
public:
|
||||
HRESULT Begin(obj_xml *reader, ifc_xmlreaderparams *params);
|
||||
HRESULT End(obj_xml *reader, LoginCommand **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:
|
||||
LoginCommand *object;
|
||||
StringBuilder elementString;
|
||||
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
};
|
||||
|
||||
#endif //NULLSOFT_AUTH_LOGIN_COMMAND_PARSER_HEADER
|
||||
Reference in New Issue
Block a user