Tree::Successor
Defined in: C4Tree.h
Returns a boolean value indicating whether one node is an successor of another.
Prototype
bool Successor(const Tree<type> *node) const;
Description
The Successor function returns true if the node specified by the node parameter is a successor of the node for which the function is called. If the node is not an successor, this function returns false.
See Also
Tree::GetSuperNode
Tree::GetRootNode
|