RWTWriteLockGuardBase<Resource> RWTWriteGuardBase<Resource>
#include <rw/sync/RWTWriteLockGuardBase.h>
RWTWriteLockGuardBase<Resource> is intended as a base class for guard classes that acquire write access on a resource upon creation and release 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 acquire write access on a mutex upon creation and release it when destructed. The class used as the actual template parameter for Resource must be one that provides acquireWrite and release methods (such as the synchronization classes provided by the library).
typedef Resource ResourceType;
~RWTWriteLockGuardBase(void);
Releases the resource if it has been acquired.
RWTWriteLockGuardBase(Resource& resource);
Constructs an instance with the given resource. Note that this constructor does not attempt to acquire write access on the resource. That is the responsibility of the derived class.
RWTWriteLockGuardBase(const RWTWriteLockGuardBase<Resource>&
second);
Dummy copy constructor required by derived class copy constructors. The copy constructor does not attempt to copy the resource.
RWTWriteLockGuard<Resource>, RWTTryWriteLockGuard<Resource>, RWTWriteUnlockGuard<Resource>
©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.