FBX C++ API Reference
FbxDeletionPolicyArray< Type > Class Template Reference

Deletion policy for pointer template classes that uses the delete[] operator. More...

#include <fbxalloc.h>

Static Public Member Functions

static void DeleteIt (Type **pPtr)
 Destruction policy implementation. More...
 

Detailed Description

template<class Type>
class FbxDeletionPolicyArray< Type >

Deletion policy for pointer template classes that uses the delete[] operator.

Definition at line 142 of file fbxalloc.h.

Member Function Documentation

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 146 of file fbxalloc.h.

147  {
148  if (*pPtr)
149  {
150  delete[] *pPtr;
151  *pPtr = NULL;
152  }
153  }
#define NULL
Definition: fbxarch.h:213

The documentation for this class was generated from the following file: