Note that this form does not create children
| 84 | |
| 85 | /// Note that this form does not create children |
| 86 | void NodeTree::db_createRoot(NodeID nid, Label label) |
| 87 | { |
| 88 | |
| 89 | structure_->db_createRoot(nid); |
| 90 | addEntry(nid); |
| 91 | setLabel(nid, label); |
| 92 | |
| 93 | node_stats_.inform_depth(1); |
| 94 | node_stats_.add_branch(1); |
| 95 | node_info_->setStatus(nid, NodeStatus::BRANCH); |
| 96 | } |
| 97 | |
| 98 | static bool is_closing(NodeStatus status) |
| 99 | { |
nothing calls this directly
no test coverage detected