FBX C++ API Reference
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FbxDeletionPolicyDelete< Type > Class Template Reference

#include <fbxalloc.h>

Class Description

template<class Type>
class FbxDeletionPolicyDelete< Type >

Definition at line 143 of file fbxalloc.h.

Static Public Member Functions

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

Member Function Documentation

◆ DeleteIt()

static void DeleteIt ( Type **  mPtr)
inlinestatic

Destruction policy implementation.

Definition at line 147 of file fbxalloc.h.

148  {
149  if( *mPtr )
150  {
151  FbxDelete(*mPtr);
152  *mPtr = NULL;
153  }
154  }
#define NULL
Definition: fbxarch.h:210
void FbxDelete(T *p)
Deletion policy for pointer template classes that uses the FbxDelete() function.
Definition: fbxnew.h:341

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