UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
CCSThreadLock.cpp
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #include "CCSThreadLock.h"
4 #include "CCSThreadMutex.h"
5 
6 using namespace MSP;
7 
9  : mutex(theMutex)
10 {
11  mutex->lock();
12 }
13 
15 {
16  mutex->unlock();
17 }
18 
19 
20 // CLASSIFICATION: UNCLASSIFIED