Rudiments
xmldom.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4  friend class xmldomnode;
5  protected:
6  void reset();
7 
8  bool tagStart(const char *name);
9  bool attributeName(const char *name);
10  bool attributeValue(const char *value);
11  bool text(const char *string);
12  bool tagEnd(const char *name);
13  bool comment(const char *string);
14  bool cdata(const char *string);
15 
16  xmldom(const xmldom &x);
17  xmldom &operator=(const xmldom &x);
18 
19  const char *cacheString(const char *string);
20  void unCacheString(const char *string);
21 
22  xmldomprivate *pvt;