#include <ArrayList.h>
Public Member Functions | |
ArrayList () | |
Constructor. | |
ArrayList (uint size) | |
~ArrayList () | |
Destructor. | |
bool | add (T data) |
Static List Class. The template argument must support the = and == operator.
Definition at line 5 of file ArrayList.h.
Constructor.
Definition at line 7 of file ArrayList.inl.
Constructor. Create an array list of the specified size.
Definition at line 13 of file ArrayList.inl.
Destructor.
Definition at line 18 of file ArrayList.inl.
bool ArrayList< T >::add | ( | T | data | ) | [virtual] |
Add a new element at the end of the list.
Reimplemented from Array< T >.
Definition at line 25 of file ArrayList.inl.