CppUnit project page FAQ

SynchronizedObject Class Reference

Base class for synchronized object. More...

#include <SynchronizedObject.h>

Inheritance diagram for SynchronizedObject:
Collaboration diagram for SynchronizedObject:

Classes

class  ExclusiveZone
 Locks a synchronization object in the current scope. More...
 
class  SynchronizationObject
 Abstract synchronization object (mutex) More...
 

Public Member Functions

 SynchronizedObject (SynchronizationObject *syncObject=0)
 
virtual ~SynchronizedObject ()
 Destructor.
 

Protected Member Functions

virtual void setSynchronizationObject (SynchronizationObject *syncObject)
 Accept a new synchronization object for protection of this instance TestResult assumes ownership of the object.
 

Protected Attributes

SynchronizationObjectm_syncObject
 

Private Member Functions

 SynchronizedObject (const SynchronizedObject &copy)
 Prevents the use of the copy constructor.
 
void operator= (const SynchronizedObject &copy)
 Prevents the use of the copy operator.
 

Detailed Description

Base class for synchronized object.

Synchronized object are object which members are used concurrently by mutiple threads.

This class define the class SynchronizationObject which must be subclassed to implement an actual lock.

Each instance of this class holds a pointer on a lock object.

See src/msvc6/MfcSynchronizedObject.h for an example.

Constructor & Destructor Documentation

◆ SynchronizedObject() [1/2]

CPPUNIT_NS_BEGIN SynchronizedObject::SynchronizedObject ( SynchronizationObject * syncObject = 0)

Constructs a SynchronizedObject object.

◆ ~SynchronizedObject()

SynchronizedObject::~SynchronizedObject ( )
virtual

Destructor.

◆ SynchronizedObject() [2/2]

SynchronizedObject::SynchronizedObject ( const SynchronizedObject & copy)
private

Prevents the use of the copy constructor.

Member Function Documentation

◆ operator=()

void SynchronizedObject::operator= ( const SynchronizedObject & copy)
private

Prevents the use of the copy operator.

◆ setSynchronizationObject()

void SynchronizedObject::setSynchronizationObject ( SynchronizationObject * syncObject)
protectedvirtual

Accept a new synchronization object for protection of this instance TestResult assumes ownership of the object.

Member Data Documentation

◆ m_syncObject

SynchronizationObject* SynchronizedObject::m_syncObject
protected

The documentation for this class was generated from the following files:

Send comments to:
CppUnit Developers