![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Section Contents
Not applicable
e32base.h
The class supports and implements the operation of the templated function CleanupReleasePushL(). It contains static functions and is not intended to be instantiated.
static void PushL(T& aPtr);
The function is called by the templated function CleanupReleasePushL().
It constructs a TCleanupItem for the <class T> type object referenced by aRef specifying the cleanup operation which is the Release() static private member function of this class.
T& aRef |
A reference to a <class T> type object. |
private: static void Release(TAny *aPtr);
The cleanup operation; it assumes that the object at aPtr is of type <class T> and calls its Release() member function.
The function is invoked when clean up is requested for the associated cleanup item.
TAny* aPtr |
A pointer to the object whose Release() member function it to be called; the object is assumed to be of type <class T> |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |