18 #ifndef QGSREADWRITELOCKER_H 
   19 #define QGSREADWRITELOCKER_H 
   21 #include "qgis_core.h" 
   23 #include <QReadWriteLock> 
   63     void changeMode( Mode mode );
 
   78     QReadWriteLock &mLock;
 
   79     Mode mMode = Unlocked;
 
The QgsReadWriteLocker class is a convenience class that simplifies locking and unlocking QReadWriteL...
Mode
A QReadWriteLock can be in 3 different modes, read, write or unlocked.