#include <tll.h>
Public Methods | |
LinkedList () | |
~LinkedList () | |
void | Insert (T *pNewObject) |
T * | Get (int val) |
void | Delete (int val) |
|
Definition at line 168 of file tll.h.
00169 { 00170 pMyHead = new HeadNode<T>; 00171 } |
|
Definition at line 159 of file tll.h.
00159 {pMyHead->DeleteList();} |
|
Definition at line 162 of file tll.h. Referenced by DeleteSpline(), and MakePortalList().
00162 {pMyHead->Delete(val);} |
|
Definition at line 161 of file tll.h. Referenced by AddPortalsToLeaves(), CalculatePVS(), CheckForParticleCollision(), CountVisibleLeaves(), CreateChannel(), DeleteSpline(), DrawSplines(), FindVisibleLeaves(), LoadSplines(), MakePortalList(), PlayChannel(), SoundTimerProc(), UpdateBullets(), UpdateChannel(), and WndProc().
00161 {return pMyHead->Get(val);} |
|
Definition at line 174 of file tll.h. Referenced by AddSpline(), CreateChannel(), LoadSample(), MakeNodeLists(), and MakePortalList().
00175 { 00176 pMyHead->Insert(pNewObject, pMyHead); 00177 } |