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

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

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