GNode

Undocumented in source.

Members

Variables

children
GNode* children;

points to the first child of the #GNode. The other children are accessed by using the @next pointer of each child.

data
void* data;

contains the actual data of the node.

next
GNode* next;

points to the node's next sibling (a sibling is another #GNode with the same parent).

parent
GNode* parent;

points to the parent of the #GNode, or is %NULL if the #GNode is the root of the tree.

prev
GNode* prev;

points to the node's previous sibling.

Meta