Location:
e32base.h
Link against:
template <class T>
void CleanupClosePushL(T& aRef);
Supported from 5.0
Constructs and pushes a TCleanupItem
object onto the cleanup stack.
The TCleanupItem
encapsulates:
a reference aRef
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 Close()
of the templated class CleanupClose<class T>
and is invoked as a result of a subsequent call to CleanupStack::PopAndDestroy()
.
|