Static Public Member Functions

FBXObjectDeletionPolicy< FBXObjectT > Class Template Reference

Search for all occurrences

Detailed Description

template<class FBXObjectT>
class FBXObjectDeletionPolicy< FBXObjectT >

Definition at line 180 of file kscopedptr.h.

#include <kscopedptr.h>

List of all members.

Static Public Member Functions

static void  DeleteIt (FBXObjectT **ptr)

Member Function Documentation

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

Definition at line 183 of file kscopedptr.h.

    {
        if (*ptr != NULL)
        {
            (*ptr)->Destroy();
            *ptr = NULL;
        }
    }

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