#include <wx/list.h>
Public Member Functions | |
| T * | GetData () const |
| wxNode< T > * | GetNext () const |
| wxNode< T > * | GetPrevious () |
| int | IndexOf () |
| void | SetData (T *data) |
| T* wxNode< T >::GetData | ( | ) | const |
Retrieves the client data pointer associated with the node.
Retrieves the next node or NULL if this node is the last one.
Retrieves the previous node or NULL if this node is the first one in the list.
| int wxNode< T >::IndexOf | ( | ) |
Returns the zero-based index of this node within the list. The return value will be wxNOT_FOUND if the node has not been added to a list yet.
| void wxNode< T >::SetData | ( | T * | data | ) |
Sets the data associated with the node (usually the pointer will have been set when the node was created).
|
[ top ] |