| TNode | Define |
| calc_int.h |
| typedef GNode TNode |
Fields
| void *data |
actual data of the node |
| @TNode@ *next |
node's sibling |
| @TNode@ *prev |
node's sibling |
| @TNode@ *parent |
parent of the TNode (NULL is the root) |
| @TNode@ *children |
the first child of the TNode. Access others by next. |
Summary
A type representing a tree.
See also
The GLib documentation (www.gtk.org)