GNode

Undocumented in source.

Members

Variables

children
GNode* children;

points to the first child of the glib.Node 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 glib.Node with the same parent).

parent
GNode* parent;

points to the parent of the glib.Node, or is NULL if the glib.Node is the root of the tree.

prev
GNode* prev;

points to the node's previous sibling.