]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/node.tex
GTK
[wxWidgets.git] / docs / latex / wx / node.tex
CommitLineData
a660d684
KB
1\section{\class{wxNode}}\label{wxnode}
2
3A node structure used in linked lists (see \helpref{wxList}{wxlist}).
4
5\wxheading{Derived from}
6
7\helpref{wxObject}{wxobject}
8
9\wxheading{See also}
10
11\helpref{wxList}{wxlist}, \helpref{wxHashTable}{wxhashtable}
12
13\latexignore{\rtfignore{\wxheading{Members}}}
14
15\membersection{wxNode::Data}
16
17\func{wxObject *}{Data}{\void}
18
19Retrieves the client data pointer associated with the node. This will
20have to be cast to the correct type.
21
22\membersection{wxNode::Next}
23
24\func{wxNode *}{Next}{\void}
25
26Retrieves the next node (NULL if at end of list).
27
28\membersection{wxNode::Previous}
29
30\func{wxNode *}{Previous}{\void}
31
32Retrieves the previous node (NULL if at start of list).
33
34\membersection{wxNode::SetData}
35
36\func{void}{SetData}{\param{wxObject *}{data}}
37
38Sets the data associated with the node (usually the pointer will have been
39set when the node was created).
40
41