83 ret->
mpNext->mpPrev = NULL;
101 ret->
mpPrev->mpNext = NULL;
114 }
else if (node->
mpNext != NULL) {
115 node->
mpNext->mpPrev = NULL;
118 }
else if (node->
mpPrev != NULL) {
119 node->
mpPrev->mpNext = NULL;
unsigned long u32
Definition types.h:12
JPANode< T > * mpLast
Definition JPAList.h:31
JPANode< T > * getLast() const
Definition JPAList.h:39
void push_front(JPANode< T > *node)
Definition JPAList.h:42
JPANode< T > * getEnd()
Definition JPAList.h:37
JPANode< T > * pop_back()
Definition JPAList.h:91
JPAList()
Definition JPAList.h:34
void push_back(JPANode< T > *node)
Definition JPAList.h:58
~JPAList()
Definition JPAList.h:35
JPANode< T > * erase(JPANode< T > *node)
Definition JPAList.h:109
JPANode< T > * getFirst() const
Definition JPAList.h:38
JPANode< T > * pop_front()
Definition JPAList.h:73
u32 mNum
Definition JPAList.h:32
JPANode< T > * mpFirst
Definition JPAList.h:30
u32 getNum() const
Definition JPAList.h:40
JPANode()
Definition JPAList.h:12
JPANode< T > * mpPrev
Definition JPAList.h:19
~JPANode()
Definition JPAList.h:14
JPANode< T > * mpNext
Definition JPAList.h:20
T * getObject()
Definition JPAList.h:17
T mData
Definition JPAList.h:21
JPANode< T > * getPrev()
Definition JPAList.h:15
JPANode< T > * getNext()
Definition JPAList.h:16