/ styx_sax.hh / Objects / StyxSax / Private Methods / Description

Private Methods



getChar

char		getChar(void);
Used to get the next character of parsed file.

Result: The next character..


ungetChar

void		ungetChar(char c);
Used to put back a character in the XML file stream.

Parameters
c The character to put back.


doOpenTag

void		doOpenTag(void);
Internal function used to parse the XML file when a '<' is founded. Call the sub-parse functions.


parseOpenTag

void		parseOpenTag(void);
Internal function used to parse open tags.


parseCloseTag

void		parseCloseTag(void);
Internal function used to parse close tags.


parseProcessingInstruction

void		parseProcessingInstruction(void);
Internal function used to parse processing instructions.


parseComment

void		parseComment(void);
Internal function used to parse XML comments.


parseCdata

void		parseCdata(void);
Internal function used to parse CDATA tags.