Public Member Functions

ArrayList< T > Class Template Reference

#include <ArrayList.h>

Inheritance diagram for ArrayList< T >:
Array< T > List< T >

List of all members.

Public Member Functions

 ArrayList ()
 Constructor.
 ArrayList (uint size)
 ~ArrayList ()
 Destructor.
bool add (T data)

Detailed Description

template<typename T>
class ArrayList< T >

Static List Class. The template argument must support the = and == operator.

Definition at line 5 of file ArrayList.h.


Constructor & Destructor Documentation

template<typename T >
ArrayList< T >::ArrayList (  ) 

Constructor.

Definition at line 7 of file ArrayList.inl.

template<typename T >
ArrayList< T >::ArrayList ( uint  size  ) 

Constructor. Create an array list of the specified size.

Definition at line 13 of file ArrayList.inl.

template<typename T >
ArrayList< T >::~ArrayList (  ) 

Destructor.

Definition at line 18 of file ArrayList.inl.


Member Function Documentation

template<typename T>
bool ArrayList< T >::add ( data  )  [virtual]

Add a new element at the end of the list.

Reimplemented from Array< T >.

Definition at line 25 of file ArrayList.inl.


The documentation for this class was generated from the following files: