#include <synchronized.h>
Public Member Functions | |
Lock (const Synchronized &obj) | |
virtual | ~Lock () |
Public Attributes | |
const Synchronized & | myObject |
A utility class for locking and unlocking Synchronized objects automatically. A Lock object should be declared on the stack in the same scope as the object to be locked. When the Lock object goes out of scope, the mutex is released. This is especially useful in code that throws exceptions.
Definition at line 40 of file synchronized.h.
CVD::Lock::Lock | ( | const Synchronized & | obj | ) | [inline] |
Definition at line 42 of file synchronized.h.
virtual CVD::Lock::~Lock | ( | ) | [inline, virtual] |
Definition at line 43 of file synchronized.h.
const Synchronized& CVD::Lock::myObject |
Definition at line 41 of file synchronized.h.