FbxDeletionPolicyFree< Type > Class Template Reference

FbxDeletionPolicyFree< Type > Class Template Reference

#include <fbxalloc.h>

Class Description

template<class Type>
class FbxDeletionPolicyFree< Type >

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

Definition at line 156 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 160 of file fbxalloc.h.

161  {
162  if( *pPtr )
163  {
164  FbxFree(*pPtr);
165  *pPtr = NULL;
166  }
167  }
#define NULL
Definition: fbxarch.h:207

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