Rudiments
xmldom.h
1 // Copyright (c) 2018 David Muse
2 // See the COPYING file for more information.
3 
4  friend class domnode;
5  protected:
6  void init(bool stringcacheenabled);
7  void reset();
8 
9  xmldom(const xmldom &x);
10  xmldom &operator=(const xmldom &x);
11 
12  private:
13  bool parseFile(const char *string,
14  domnode *parent,
15  uint64_t position);
16  bool parseString(const char *string,
17  domnode *parent,
18  uint64_t position);
19  void insertChild(domnode *child);
20 
21  xmldomprivate *pvt;
bool insertChild(domnode *child, uint64_t position)
Definition: domnode.h:122
Definition: xmldom.h:10