UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
CCSThreadLock.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef MSP_CCSTHREADLOCK_H
4 #define MSP_CCSTHREADLOCK_H
5 
6 #include "DtccApi.h"
7 
8 namespace MSP
9 {
10  class CCSThreadMutex;
11 }
12 
13 namespace MSP
14 {
16  {
17  public:
19  CCSThreadLock(const CCSThreadMutex *mutex);
20 
22  ~CCSThreadLock();
23 
24  private:
25  // no copy operators
27  CCSThreadLock &operator=( const CCSThreadLock&);
28 
29  const CCSThreadMutex *mutex;
30  };
31 }
32 #endif
33 
34 // CLASSIFICATION: UNCLASSIFIED