FBX C++ API Reference
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 158 of file fbxalloc.h.

Static Public Member Functions

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

Member Function Documentation

◆ DeleteIt()

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 162 of file fbxalloc.h.

163  {
164  if( *pPtr )
165  {
166  FbxFree(*pPtr);
167  *pPtr = NULL;
168  }
169  }
#define NULL
Definition: fbxarch.h:210

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