7 #include <shared_mutex>
10 using std::shared_mutex;
Implementation for read/write lock.
void writeLock()
Locks for writing / exclusive lock.
void unlock()
Unlocks this read write lock.
shared_mutex stlSharedMutex
~ReadWriteLock()
Destroys the read write lock.
void readLock()
Locks for reading / shared lock.
#define FORBID_CLASS_COPY(CLASS)