Static Public Member Functions

FbxFreeDeletionPolicy< T > Class Template Reference

Search for all occurrences

Detailed Description

template<class T>
class FbxFreeDeletionPolicy< T >

A deletion policy that uses the FbxFree() function instead of the delete operator.

Definition at line 40 of file fbxscopedptr.h.

#include <fbxscopedptr.h>

List of all members.

Static Public Member Functions

static void  DeleteIt (T **ptr)

Member Function Documentation

static void DeleteIt ( T **  ptr ) [inline, static]

Definition at line 43 of file fbxscopedptr.h.

    {
        if ( *ptr != NULL )
        {
            FbxFree( *ptr );
            *ptr = NULL;
        }
    }

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