|
Developer Documentation |
|
Centre for Vision, Speech & Signal Processing |
Comments:
!!! SMALL OBJECT !!!
Parent Classes:
Methods:
- BStackC()
-
Default constructor.
- BStackC(const BStackC & Oth)
-
Copy constructor.
- void Push(const T & Data)
-
Push item onto stack.
- T Pop(void)
-
Pop item from top of stack.
- void DelFirst(void)
-
Delete the item from the top of the stack.
- void DelTop(void)
-
Delete the item from the top of the stack.
- const T & Top(void) const
-
Look at top of stack.
- const T & First() const
-
First on stack, just alias for Top.
- T GetFirst(void)
-
Get item at top of stack.
- BooleanT IsEmpty() const
-
Is stack empty ?
- BListC<T> Copy() const
-
Make copy, dummy function not needed.
- BooleanT IsEmpty() const
-
Is list empty ?
- void InsFirst(const T & Data)
-
Insert element first in list.
- BooleanT DelFirst()
-
Delete element first in list.
Returns FALSE if list is empty.
- BooleanT RemoveAfter(BListIterC<T> & At)
-
Remove element after At.
Returns FALSE if no such element.
- const BListC<T> & operator=(const BListC<T> & Oth)
-
Assign to another list, old list is destroyed.
- T & First()
-
Get first item in list. List MUST NOT be empty.
- const T & First() const
-
Get first item in list. List MUST NOT be empty.
- void Empty()
-
Empty the list of all its contents.
- UIntT Size() const
-
Get size of list.
|
Programmer:Charles Galambos, Documentation by CxxDoc: Tue Mar 20 10:49:27 2001
|