void RemoveAll();
Removes all the pointers from this array but does not actually delete the CObject objects. If the array is empty already, the function still works.
The RemoveAll function frees all memory used for pointer storage.
CObArray array;
CAge* pa1;
CAge* pa2;
array.Add( pa1 = new CAge( 21 ) ); // Element 0
array.Add( pa2 = new CAge( 40 ) ); // Element 1
ASSERT( array.GetSize() == 2 );
array.RemoveAll(); // Pointers removed but objects not deleted
ASSERT( array.GetSize() == 0 );
delete pa1;
delete pa2; // Cleans up memory