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