| 49 | } |
| 50 | |
| 51 | void Structure::db_createNode(NodeID nid, NodeID pid, int kids) |
| 52 | { |
| 53 | nodes_[nid] = std::unique_ptr<Node>{new Node(pid, kids)}; |
| 54 | } |
| 55 | |
| 56 | NodeID Structure::createChild(NodeID pid, int alt, int kids) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected