FbxDeletionPolicyDelete< Type > Class Template Reference

FbxDeletionPolicyDelete< Type > Class Template Reference

#include <fbxalloc.h>

Class Description

template<class Type>
class FbxDeletionPolicyDelete< Type >

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

Definition at line 141 of file fbxalloc.h.

Static Public Member Functions

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

Member Function Documentation

static void DeleteIt ( Type **  mPtr)
inlinestatic

Destruction policy implementation.

Definition at line 145 of file fbxalloc.h.

146  {
147  if( *mPtr )
148  {
149  FbxDelete(*mPtr);
150  *mPtr = NULL;
151  }
152  }
#define NULL
Definition: fbxarch.h:207
void FbxDelete(T *p)
Definition: fbxnew.h:341

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