Tree::GetNextSubnode
Defined in:
Returns the next subnode in the same list of subnodes.
TSTree.h
Prototype
type *GetNextSubnode(void) const;
Description
Let N represent the tree node for which the GetNextSubnode
function is called. The GetNextSubnode
function returns the next subnode in the list of subnodes to which the node N belongs. If N is the last subnode in the list, then the return value is nullptr
.
See Also