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