FBX C++ API Reference
FbxDeletionPolicyDefault< 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 FbxDeletionPolicyDefault< Type >

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

Definition at line 127 of file fbxalloc.h.

Member Function Documentation

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 131 of file fbxalloc.h.

132  {
133  if( *pPtr )
134  {
135  delete *pPtr;
136  *pPtr = NULL;
137  }
138  }
#define NULL
Definition: fbxarch.h:213

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