Node::AppendNewSubnode
Defined in:
Adds a newly created subnode to a node.
C4Node.h
Prototype
void AppendNewSubnode(Node *node);
Parameters
node |
A pointer to the subnode to add. |
Description
The AppendNewSubnode
function add the subnode specified by the node
parameter to a node and subsequently preprocesses the subnode. Calling AppendNewSubnode
is equivalent to calling Tree::AppendSubnode
for the same node object and then calling Node::PreprocessNode
for the node specified by node
.
See Also