Rudiments
avltree.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information
3
4 protected:
5 void insert(treenode<valuetype> *top,
7 treenode<valuetype> **treetop);
8 void clone(treecollection<valuetype> *tree);
9 void clone(nodecollection<valuetype> *coll);
11
12 ssize_t writeNodeXml(output *out,
14 const char *name,
15 uint16_t *indentlevel,
16 bool details,
17 bool indent);
18 ssize_t writeNodeJson(output *out,
20 uint16_t *indentlevel,
21 bool indent);
22
26 uint64_t count;
Definition nodecollection.h:31
Definition output.h:11
Definition treecollection.h:57
Definition treecollection.h:12