NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
cListNd_c Class Reference

#include <dol/cLib/c_list.hpp>

Inheritance diagram for cListNd_c:
[legend]

Description

A doubly-linked list node. See cListMg_c.

Note
Unofficial name.

Definition at line 7 of file c_list.hpp.

Public Member Functions

 cListNd_c ()
 Constructs a new list node.
 
cListNd_cgetPrev () const
 
cListNd_cgetNext () const
 

Protected Attributes

cListNd_cmpPrev
 The previous node.
 
cListNd_cmpNext
 The next node.
 

Constructor & Destructor Documentation

◆ cListNd_c()

cListNd_c::cListNd_c ( )
inline

Constructs a new list node.

Definition at line 10 of file c_list.hpp.

Member Function Documentation

◆ getPrev()

cListNd_c * cListNd_c::getPrev ( ) const
inline

Definition at line 12 of file c_list.hpp.

◆ getNext()

cListNd_c * cListNd_c::getNext ( ) const
inline

Definition at line 13 of file c_list.hpp.

Member Data Documentation

◆ mpPrev

cListNd_c* cListNd_c::mpPrev
protected

The previous node.

Definition at line 16 of file c_list.hpp.

◆ mpNext

cListNd_c* cListNd_c::mpNext
protected

The next node.

Definition at line 17 of file c_list.hpp.