Array class.
Description
The array class is used to manage arrays of any type.
It handles automatically resizing if the array grows over the allocated
space.
Class members
CL_Array()
CL_Array(int start_entries)
CL_Array(const CL_Array &clone)
~CL_Array()
void clear()
int add(TYPE *item)
int add(
TYPE *item,
int position)
bool del(int position)
bool del(TYPE *item)
int get_num(TYPE *find_item)
TYPE *get_item(int number)
TYPE *operator[](int number)
int get_num_items()
int get_alloc_size()
See Also
CL_List | - | List class |
CL_Stack | - | Stack class |
CL_Queue | - | Queue class |
Back to index
|