#include <T2SList.h>
Definition at line 9 of file T2SList.h.
◆ Node()
T2GenericSList::Node::Node |
( |
| ) |
|
|
inline |
◆ InsertAfter()
void T2GenericSList::Node::InsertAfter |
( |
Node * | a_pNode | ) |
|
|
inline |
Definition at line 35 of file T2SList.h.
36 {
38 m_pNext = a_pNode->m_pNext;
39 a_pNode->m_pNext = this;
40 }
◆ IsLinked()
TBOOL T2GenericSList::Node::IsLinked |
( |
| ) |
const |
|
inline |
Definition at line 30 of file T2SList.h.
31 {
32 return m_pNext != this;
33 }
◆ Next()
Node * T2GenericSList::Node::Next |
( |
| ) |
const |
|
inline |
Definition at line 25 of file T2SList.h.
26 {
27 return m_pNext;
28 }
◆ Reset()
void T2GenericSList::Node::Reset |
( |
| ) |
|
|
inline |
Definition at line 20 of file T2SList.h.
21 {
22 m_pNext = this;
23 }
◆ T2GenericSList
The documentation for this class was generated from the following file:
- D:/_dev/OpenBarnyard/Source/Toshi/Source/Toshi/T2SList.h