#include <tll.h>
Public Methods | |
LinkedList () | |
~LinkedList () | |
void | Insert (T *pNewObject) |
T * | Get (int val) |
void | Delete (int val) |
Public Attributes | |
int | numObjects |
|
Definition at line 177 of file tll.h. References LinkedList< T >::numObjects.
00178 { 00179 numObjects = 0; 00180 pMyHead = new HeadNode<T>; 00181 } |
|
Definition at line 166 of file tll.h.
00166 {pMyHead->DeleteList();} |
|
Definition at line 169 of file tll.h. Referenced by DeleteSpline(), and MakePortalList().
00169 {pMyHead->Delete(val);} |
|
Definition at line 168 of file tll.h. Referenced by AddPortalsToLeaves(), CalculatePVS(), CheckForParticleCollision(), CountVisibleLeaves(), CreateChannel(), DeleteSpline(), DrawSplines(), FindVisibleLeaves(), LoadSplines(), MakePortalList(), PlayChannel(), SoundTimerProc(), UpdateBullets(), UpdateChannel(), and WndProc().
00168 {return pMyHead->Get(val);} |
|
Definition at line 184 of file tll.h. Referenced by AddSpline(), CreateChannel(), LoadSample(), MakeNodeLists(), and MakePortalList().
00185 { 00186 pMyHead->Insert(pNewObject, pMyHead); 00187 } |
|
Definition at line 171 of file tll.h. Referenced by AddPortalsToLeaves(), LinkedList< T >::LinkedList(), MakeNodeLists(), and MakePortalList(). |