Static Public Member Functions

FbxDeletionPolicyDelete< Type > Class Template Reference

Search for all occurrences

Detailed Description

template<class Type>
class FbxDeletionPolicyDelete< Type >

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

Definition at line 138 of file fbxalloc.h.

#include <fbxalloc.h>

List of all members.

Static Public Member Functions

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

Member Function Documentation

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

Destruction policy implementation.

Definition at line 142 of file fbxalloc.h.

    {
        if( *mPtr )
        {
            FbxDelete(*mPtr);
            *mPtr = NULL;
        }
    }

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