Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
23
Src/Wasabi/api/xml/xmlparse.h
Normal file
23
Src/Wasabi/api/xml/xmlparse.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef _XMLPARSE_H
|
||||
#define _XMLPARSE_H
|
||||
|
||||
class XMLParse {
|
||||
private:
|
||||
void *parser;
|
||||
|
||||
public:
|
||||
XMLParse();
|
||||
virtual ~XMLParse();
|
||||
|
||||
virtual void SetUserData(void *param);
|
||||
virtual void SetElementHandler(void (*start)(void *userData, const wchar_t *name, const wchar_t **atts),
|
||||
void (*end)(void *userData, const wchar_t *name));
|
||||
virtual void SetCharacterDataHandler(void (*handler)(void *userData,const wchar_t *s, int len));
|
||||
virtual int Parse(const wchar_t *s, int len, int isFinal);
|
||||
virtual const wchar_t *ErrorString(int code);
|
||||
virtual int GetErrorCode();
|
||||
virtual int GetCurrentLineNumber();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue