Location:
e32base.h
Link against:
template <class T>
void CleanupDeletePushL(T* aPtr);
Supported from 5.0
Constructs and pushes a TCleanupItem
object onto the cleanup stack.
The TCleanupItem
encapsulates:
the pointer aPtr
to the object of type <class T>
which is to be cleaned up
an associated cleanup operation.
The cleanup operation is the private static function Delete()
of the templated class CleanupDelete<class T>
and is invoked as a result of a subsequent call to CleanupStack::PopAndDestroy()
.
|