TCleanupItem Class Reference

class TCleanupItem

Encapsulates a cleanup operation and an object on which the operation is to be performed.

The class allows cleanup to be more sophisticated than simply deleting objects, for example, releasing access to some shared resource.

Constructor & Destructor Documentation

TCleanupItem(TCleanupOperation)

TCleanupItem ( TCleanupOperation anOperation ) [inline]

Constructs the object with a cleanup operation.

Parameters

TCleanupOperation anOperation A cleanup operation which will be invoked by the pop and destroy action resulting from a subsequent call to CleanupStack::PopAndDestroy().

TCleanupItem(TCleanupOperation, TAny *)

TCleanupItem ( TCleanupOperation anOperation,
TAny * aPtr
) [inline]

Constructs the object with a cleanup operation and a pointer to the object to be cleaned up.

Parameters

TCleanupOperation anOperation A cleanup operation which will be invoked by the pop and destroy action resulting from a subsequent call to CleanupStack::PopAndDestroy().
TAny * aPtr A pointer to an object which is the target of the cleanup operation.

Member Data Documentation

TCleanupOperation iOperation

TCleanupOperation iOperation [private]

TAny * iPtr

TAny * iPtr [private]