wxWidgets/docs/latex/wx/node.tex
Karsten Ballüder a660d684ed I've now added the documentation files.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1998-05-20 14:25:30 +00:00

42 lines
894 B
TeX

\section{\class{wxNode}}\label{wxnode}
A node structure used in linked lists (see \helpref{wxList}{wxlist}).
\wxheading{Derived from}
\helpref{wxObject}{wxobject}
\wxheading{See also}
\helpref{wxList}{wxlist}, \helpref{wxHashTable}{wxhashtable}
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxNode::Data}
\func{wxObject *}{Data}{\void}
Retrieves the client data pointer associated with the node. This will
have to be cast to the correct type.
\membersection{wxNode::Next}
\func{wxNode *}{Next}{\void}
Retrieves the next node (NULL if at end of list).
\membersection{wxNode::Previous}
\func{wxNode *}{Previous}{\void}
Retrieves the previous node (NULL if at start of list).
\membersection{wxNode::SetData}
\func{void}{SetData}{\param{wxObject *}{data}}
Sets the data associated with the node (usually the pointer will have been
set when the node was created).