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

#include <fbxalloc.h>

Static Public Member Functions

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

Detailed Description

template<class Type>
class FbxDeletionPolicyDelete< Type >

Definition at line 159 of file fbxalloc.h.

Member Function Documentation

static void DeleteIt ( Type **  mPtr)
inlinestatic

Destruction policy implementation.

Definition at line 163 of file fbxalloc.h.

164  {
165  if( *mPtr )
166  {
167  FbxDelete(*mPtr);
168  *mPtr = NULL;
169  }
170  }
#define NULL
Definition: fbxarch.h:213
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: