Method
GLibNodechildren_foreach
Declaration
void
g_node_children_foreach (
GNode* node,
GTraverseFlags flags,
GNodeForeachFunc func,
gpointer data
)
Description
Calls a function for each of the children of a GNode
. Note that it
doesn’t descend beneath the child nodes. func
must not do anything
that would modify the structure of the tree.
This method is not directly available to language bindings. |
Parameters
flags |
GTraverseFlags |
Which types of children are to be visited, one of
|
|
func |
GNodeForeachFunc |
The function to call for each visited node. |
|
data |
gpointer |
User data to pass to the function. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |