Definition at line 73 of file kscopedptr.h.
#include <kscopedptr.h>
Static Public Member Functions |
|
| static void | DeleteIt (T **ptr) |
| static void DeleteIt | ( | T ** | ptr | ) | [inline, static] |
Definition at line 76 of file kscopedptr.h.
{
if ( *ptr != NULL )
{
FbxSdkFree( *ptr );
*ptr = NULL;
}
}