CAutoPtrElementTraits Class
This class provides methods, static functions, and typedefs useful when creating collections of smart pointers.
Important
This class and its members cannot be used in applications that execute in the Windows Runtime.
template<typename T>
class CAutoPtrElementTraits
: public CDefaultElementTraits<ATL::CAutoPtr<T>>
T
The pointer type.
Name | Description |
---|---|
CAutoPtrElementTraits::INARGTYPE | The data type to use for adding elements to the collection class object. |
CAutoPtrElementTraits::OUTARGTYPE | The data type to use for retrieving elements from the collection class object. |
This class provides methods, static functions, and typedefs for aiding the creation of collection class objects containing smart pointers. The classes CAutoPtrArray and CAutoPtrList derive from CAutoPtrElementTraits
. If building a collection of smart pointers that requires vector new and delete operators, use CAutoVectorPtrElementTraits instead.
CAutoPtrElementTraits
Header: atlcoll.h
The data type to use for adding elements to the collection class object.
typedef CAutoPtr<T>& INARGTYPE;
The data type to use for retrieving elements from the collection class object.
typedef T *& OUTARGTYPE;