FbxDeletionPolicyObject< Type > Class Template Reference

FbxDeletionPolicyObject< Type > Class Template Reference

#include <fbxalloc.h>

Class Description

template<class Type>
class FbxDeletionPolicyObject< Type >

Deletion policy for pointer template classes that uses the Destroy() function.

Definition at line 171 of file fbxalloc.h.

Static Public Member Functions

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

Member Function Documentation

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 175 of file fbxalloc.h.

176  {
177  if( *pPtr )
178  {
179  (*pPtr)->Destroy();
180  *pPtr = NULL;
181  }
182  }
#define NULL
Definition: fbxarch.h:207

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