#include <e32base.h>
| class CleanupDelete |
| Public Member Functions | |
|---|---|
| void | PushL(T *) |
A utility class used by the templated function CleanupDeletePushL() to create a TCleanupItem item that will perform a delete type operation on the class T type object.
See also: CleanupDeletePushL()
| void | PushL | ( | T * | aPtr | ) | [static, inline] |
Creates a TCleanupItem for the specified object.
The cleanup operation is the private static function Delete() of this class, which deletes the specified object.
| Parameter | Description |
|---|---|
| aPtr | The object for which a TCleanupItem is to be constructed. |