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

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

#include <fbxalloc.h>

Static Public Member Functions

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

Detailed Description

template<class Type>
class FbxDeletionPolicyObject< Type >

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

Definition at line 189 of file fbxalloc.h.

Member Function Documentation

static void DeleteIt ( Type **  pPtr)
inlinestatic

Destruction policy implementation.

Definition at line 193 of file fbxalloc.h.

194  {
195  if( *pPtr )
196  {
197  (*pPtr)->Destroy();
198  *pPtr = NULL;
199  }
200  }
#define NULL
Definition: fbxarch.h:213

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