Rudiments
dtd.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  bool parseDtd();
6  bool newElement(xmldomnode *node);
7  bool parseList(const char *attributelist,
8  xmldomnode *element,
9  int32_t checkcount, int32_t indent,
10  char delimiter, const char *name);
11  bool newAttribute(xmldomnode *node);
12  void nodeError(xmldomnode *node);
13 
14 
15  dtd(const dtd &d);
16  dtd &operator=(const dtd &d);
17 
18  dtdprivate *pvt;