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

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

#include <fbxalloc.h>

Static Public Member Functions

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

Detailed Description

template<class Type>
class FbxDeletionPolicyFree< Type >

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

Definition at line 174 of file fbxalloc.h.

Member Function Documentation

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 178 of file fbxalloc.h.

179  {
180  if( *pPtr )
181  {
182  FbxFree(*pPtr);
183  *pPtr = NULL;
184  }
185  }
#define NULL
Definition: fbxarch.h:213

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