CopyElements

template< class TYPE >
void AFXAPICopyElements(
TYPE***pDest,constTYPE*pSrc,intnCount);**

Parameters

TYPE

Template parameter specifying the type of elements to be copied.

pDest

Pointer to the destination where the elements will be copied.

pSrc

Pointer to the source of the elements to be copied.

nCount

Number of elements to be copied.

Remarks

This function is called directly by CArray::Append and CArray::Copy. The default implementation uses the simple assignment operator ( = ) to perform the copy operation. If the type being copied does not have an overloaded operator=, then the default implementation performs a bitwise copy.

For information on implementing this and other helper functions, see the article in Visual C++ Programmer’s Guide.

See Also   CArray