Rogue Wave banner
Previous fileTop of DocumentContentsIndexNext file

RWTUnlockGuard<Resource>


RWTUnlockGuard<Resource> RWTGuardBase<Resource>

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

Data Types

Member Functions

Package

Synchronization

Header File

#include <rw/sync/RWTUnlockGuard.h> 

Description

RWTUnlockGuard<Resource> is a guard class that releases its resource upon creation and acquires it upon destruction. Guard objects work in conjunction with block statements in such a way as to establish an appropriate state upon creation, maintain that state for the duration of the block, and restore the original state upon destruction. For example, a guard may release a mutex upon creation and reacquire it when destructed. The class used as the actual template parameter for Resource must be one that provides acquire and release methods such as the synchronization classes provided by the library.

Example

Public Typedef

typedef Resource     ResourceType;

Constructor

RWTUnlockGuard(Resource& resource);

Destructor

~RWTUnlockGuard(void);

Protected Constructor

RWTUnlockGuard(const RWTUnlockGuard<Resource>& second);

Protected Member Operator

RWTUnlockGuard<Resource>&
operator=(const RWTUnlockGuard<Resource>& second);

See Also

RWTLockGuard<Resource>, RWTTryLockGuard<Resource>



Previous fileTop of DocumentContentsIndexNext file

©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.