VTK
|
mutual exclusion locking class More...
#include <vtkMutexLock.h>
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkMutexLock * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | Lock (void) |
void | Unlock (void) |
Static Public Member Functions | |
static vtkMutexLock * | New () |
static int | IsTypeOf (const char *type) |
static vtkMutexLock * | SafeDownCast (vtkObjectBase *o) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkMutexLock () | |
Protected Attributes | |
vtkSimpleMutexLock | SimpleMutexLock |
Friends | |
class | vtkConditionVariable |
mutual exclusion locking class
vtkMutexLock allows the locking of variables which are accessed through different threads. This header file also defines vtkSimpleMutexLock which is not a subclass of vtkObject.
Definition at line 82 of file vtkMutexLock.h.
typedef vtkObject vtkMutexLock::Superclass |
Reimplemented from vtkObject.
Definition at line 87 of file vtkMutexLock.h.
vtkMutexLock::vtkMutexLock | ( | ) | [inline, protected] |
Definition at line 102 of file vtkMutexLock.h.
static vtkMutexLock* vtkMutexLock::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
static int vtkMutexLock::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
virtual int vtkMutexLock::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
static vtkMutexLock* vtkMutexLock::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
virtual vtkObjectBase* vtkMutexLock::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
vtkMutexLock* vtkMutexLock::NewInstance | ( | ) | const |
Reimplemented from vtkObject.
void vtkMutexLock::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
void vtkMutexLock::Lock | ( | void | ) | [inline] |
Lock the vtkMutexLock
Definition at line 109 of file vtkMutexLock.h.
void vtkMutexLock::Unlock | ( | void | ) | [inline] |
Unlock the vtkMutexLock
Definition at line 114 of file vtkMutexLock.h.
friend class vtkConditionVariable [friend] |
Definition at line 98 of file vtkMutexLock.h.
vtkSimpleMutexLock vtkMutexLock::SimpleMutexLock [protected] |
Definition at line 101 of file vtkMutexLock.h.