template< class TYPE >
void AFXAPI SerializeElements( CArchive& ar, TYPE* pElements, int nCount );
Parameters
TYPE
Template parameter specifying the type of the elements.
ar
An archive object to archive to or from.
pElements
Pointer to the elements being archived.
nCount
Number of elements being archived
Remarks
CArray, CList, and CMap call this function to serialize elements. The default implementation does a bit-wise read or write.
For information on implementing this and other helper functions, see the article Collections: How to Make a Type-Safe Collection in Visual C++ Programmer’s Guide.
See Also CArchive