Critical section locking class that can be allocated on the stack. More...
#include <igtlSimpleFastMutexLock.h>
Public Types | |
typedef SimpleFastMutexLock | Self |
Public Member Functions | |
void | Lock () const |
void | Unlock () const |
SimpleFastMutexLock () | |
~SimpleFastMutexLock () | |
Protected Attributes | |
FastMutexType | m_FastMutexLock |
Critical section locking class that can be allocated on the stack.
SimpleFastMutexLock is used by FastMutexLock to perform mutex locking. SimpleFastMutexLock is not a subclass of Object and is designed to be allocated on the stack.
Definition at line 89 of file igtlSimpleFastMutexLock.h.
Standard class typedefs.
Definition at line 93 of file igtlSimpleFastMutexLock.h.
igtl::SimpleFastMutexLock::SimpleFastMutexLock | ( | ) |
Constructor and destructor left public purposely because of stack allocation.
igtl::SimpleFastMutexLock::~SimpleFastMutexLock | ( | ) |
Constructor and destructor left public purposely because of stack allocation.
void igtl::SimpleFastMutexLock::Lock | ( | ) | const |
Lock access.
Referenced by igtl::FastMutexLock::Lock().
void igtl::SimpleFastMutexLock::Unlock | ( | ) | const |
Unlock access.
Referenced by igtl::FastMutexLock::Unlock().
FastMutexType igtl::SimpleFastMutexLock::m_FastMutexLock [mutable, protected] |
Definition at line 107 of file igtlSimpleFastMutexLock.h.