Static Public Member Functions

FbxDeletionPolicy< T > Class Template Reference

Search for all occurrences

Detailed Description

template<class T>
class FbxDeletionPolicy< T >

A deletion policy for pointer template classes that uses the FbxSdkDelete() function.

Definition at line 169 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 172 of file fbxscopedptr.h.

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

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