Static Public Member Functions

FreeDeletionPolicy< T > Class Template Reference

Search for all occurrences

Detailed Description

template<class T>
class FreeDeletionPolicy< T >

Definition at line 73 of file kscopedptr.h.

#include <kscopedptr.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 76 of file kscopedptr.h.

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

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