|
||
class CleanupDelete;
A utility class used by the templated function CleanupDeletePushL(T *)
to create a TCleanupItem
item that will perform a delete type operation on the class T type object.
Defined in CleanupDelete
:
PushL(T *)
Creates a TCleanupItem for the specified object.static inline void PushL(T *aPtr);
Creates a TCleanupItem
for the specified object.
The cleanup operation is the private static function CleanupDelete::Delete(TAny *)
of this class, which deletes the specified object.
|