DumpElements

template<classTYPE**>**
voidAFXAPIDumpElements(CDumpContext&dc,constTYPE***pElements,intnCount);**

Parameters

dc

Dump context for dumping elements.

TYPE

Template parameter specifying the type of the elements.

pElements

Pointer to the elements to be dumped.

nCount

Number of elements to be dumped.

Remarks

Override this function to provide stream-oriented diagnostic output in text form for the elements of your collection. The CArray::Dump, CList::Dump, and CMap::Dump functions call this if the depth of the dump is greater than 0.

The default implementation does nothing. If the elements of your collection are derived from CObject, your override will typically iterate through the collection’s elements, calling Dump for each element in turn.

For information on diagnostics and on the Dump function, see in Visual C++ Programmer’s Guide.

See Also   CDumpContext::SetDepth, CObject::Dump, CArray, CList, CMap