Function CSPArray<T>::Copy()
Description:
Copies the content of an array to this one.
 |
Prototype:
void Copy(const CSPArray<T>& Array);
Arguments:
- const CSPArray<T>& Array [IN]
The array with the data to be copied.
Return value:
No return value (void).
Remarks:
Any data contained in this object will be discarded and the array will be resized appropriately to fit the copied data.
Examples:
CSPArray<char> A1, A2; ... A1.Copy( A2 );
See also:
member function operator = (), Add(), Attach()
|
|