Static Public Member Functions

FbxDeletionPolicyDefault< Type > Class Template Reference

Search for all occurrences

Detailed Description

template<class Type>
class FbxDeletionPolicyDefault< Type >

Deletion policy for pointer template classes that uses the delete operator.

Definition at line 123 of file fbxalloc.h.

#include <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 127 of file fbxalloc.h.

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

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