FbxDeletionPolicyFree< Type > Class Template Reference
 
 
 
FbxDeletionPolicyFree< Type > Class Template Reference

#include <fbxalloc.h>


Class Description

template<class Type>
class FbxDeletionPolicyFree< Type >

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

Definition at line 153 of file fbxalloc.h.

List of all members.

Static Public Member Functions

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

Member Function Documentation

static void DeleteIt ( Type **  pPtr ) [inline, static]

Destruction policy implementation.

Definition at line 157 of file fbxalloc.h.

        {
                if( *pPtr )
                {
                        FbxFree(*pPtr);
                        *pPtr = NULL;
                }
        }

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