#include <fbxalloc.h>
Deletion policy for pointer template classes that uses the Destroy() function.
Definition at line 168 of file fbxalloc.h.
Static Public Member Functions |
|
| static void | DeleteIt (Type **pPtr) |
| Destruction policy implementation. |
|
| static void DeleteIt | ( | Type ** | pPtr | ) | [inline, static] |
Destruction policy implementation.
Definition at line 172 of file fbxalloc.h.
{
if( *pPtr )
{
(*pPtr)->Destroy();
*pPtr = NULL;
}
}