Function CSPArray<T>::Add()
Description:
Appends data at the end of the array's content.
 |
Prototype:
void Add(const T* p pData, unsigned long ulSize);
Arguments:
- const T* p pData [IN]
The pointer to the data to be added.
- unsigned long ulSize [IN]
The size of the data, in units of type T, to be added.
Return value:
No return value (void).
Remarks:
Use this function with caution, since an improper pointer or improper size may be fatal. The array will appropriately grow to fit the added data.
See also:
member functions Add(), operator += ()
|
|