32class StackNode :
public Class
42inline StackNode<Type>::StackNode(Type d)
49class Stack :
public Class
64inline Stack<Type>::Stack()
70inline Stack<Type>::~Stack()
76inline void Stack<Type>::Clear(
void)
84inline qboolean Stack<Type>::Empty(
void)
93inline void Stack<Type>::Push(Type data)
100 gi.Error(ERR_DROP,
"Stack::Push : Out of memory");
108inline Type Stack<Type>::Pop(
void)