Rudiments
xmlsax.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  bool parse();
6  bool parseTag(char current, char *next);
7  bool parseTagName(char current,
8  stringbuffer *ns,
9  stringbuffer *name,
10  char *next);
11  char parseComment(char current);
12  char parseCData(char current);
13  char parseAttribute(char current, char standalone);
14  int32_t getGeneralEntity(char breakchar);
15  bool parseText(char current, char *next);
16 
17  xmlsax(const xmlsax &x);
18  xmlsax &operator=(const xmlsax &x);
19 
20  xmlsaxprivate *pvt;
Definition: stringbuffer.h:13
Definition: xmlsax.h:12