AfxDoForAllClasses 

void AFXAPI AfxDoForAllClasses( void (*pfn)(const CRuntimeClass* pClass, void* pContext), void* pContext );

Parameters

pfn

Points to an iteration function to be called for each class. The function arguments are a pointer to a CRuntimeClass object and a void pointer to extra data that the caller supplies to the function.

pContext

Points to optional data that the caller can supply to the iteration function. This pointer can be NULL.

Remarks

Calls the specified iteration function for all serializable CObject-derived classes in the application's memory space. Serializable CObject-derived classes are classes derived using the DECLARE_SERIAL macro. The pointer that is passed to AfxDoForAllClasses in pContext is passed to the specified iteration function each time it is called.

Note   This function works only in the Debug version of MFC.

See Also   DECLARE_SERIAL