template< class BASE_CLASS, class TYPE >
class CTypedPtrArray : public BASE_CLASS
Parameters
BASE_CLASS
Base class of the typed pointer array class; must be an array class (CObArray or CPtrArray).
TYPE
Type of the elements stored in the base-class array.
Remarks
The CTypedPtrArray class provides a type-safe “wrapper” for objects of class CPtrArray or CObArray. When you use CTypedPtrArray rather than CPtrArray or CObArray, the C++ type-checking facility helps eliminate errors caused by mismatched pointer types.
In addition, the CTypedPtrArray wrapper performs much of the casting that would be required if you used CObArray or CPtrArray.
Because all CTypedPtrArray functions are inline, use of this template does not significantly affect the size or speed of your code.
For more information on using CTypedPtrArray, see the articles Collections and Collections: Template-Based Classes in Visual C++ Programmer’s Guide.
#include <afxtempl.h>
Class Members | Hierarchy Chart
Sample MFC Sample COLLECT