description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||||
---|---|---|---|---|---|---|---|---|---|---|
Learn more about: CHeapPtrElementTraits Class |
CHeapPtrElementTraits Class |
11/04/2016 |
|
|
910e0e06-3c8b-4242-bf00-b57eb74fbc77 |
This class provides methods, static functions, and typedefs useful when creating collections of heap pointers.
Important
This class and its members cannot be used in applications that execute in the Windows Runtime.
template<typename T, class Allocator = ATL::CCRTAllocator>
class CHeapPtrElementTraits :
public CDefaultElementTraits<ATL::CHeapPtr<T, Allocator>>
T
The object type to be stored in the collection class.
Allocator
The memory allocation class to use. The default is CCRTAllocator.
Name | Description |
---|---|
CHeapPtrElementTraits::INARGTYPE | The data type to use for adding elements to the collection class object. |
CHeapPtrElementTraits::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 heap pointers. The class CHeapPtrList
derives from CHeapPtrElementTraits
.
For more information, see ATL Collection Classes.
CHeapPtrElementTraits
Header: atlcoll.h
The data type to use for adding elements to the collection class object.
typedef CHeapPtr<T, Allocator>& INARGTYPE;
The data type to use for retrieving elements from the collection class object.
typedef T *& OUTARGTYPE;
CDefaultElementTraits Class
CComHeapPtr Class
Class Overview