Lines Matching defs:tree
29 /// \file utils/config/tree.hpp
30 /// Data type to represent a tree of arbitrary values with string keys.
52 /// Representation of a tree.
54 /// The string keys of the tree are in dotted notation and actually represent
65 /// tree can be static or dynamic. Static inner nodes have a known subset of
70 /// For simplicity reasons, we force the root of the tree to be a static inner
78 /// tree and all of its public methods. Also, the tree accepts dotted notations
83 class tree {
84 /// The root of the tree.
87 explicit tree(detail::static_inner_node*);
90 tree(void);
91 ~tree(void);
93 tree deep_copy(void) const;
119 bool operator==(const tree&) const;
120 bool operator!=(const tree&) const;