Ilwis-Objects  1.0
GIS and Remote Sensing framework for data access and processing
 All Classes Functions Enumerations Pages
locker.h
1 #ifndef LOCKER_H
2 #define LOCKER_H
3 
4 #include "Kernel_global.h"
5 
6 #include <mutex>
7 
8 namespace Ilwis {
9 class KERNELSHARED_EXPORT Locker : public std::lock_guard<std::mutex>
10 {
11 public:
12  Locker(std::mutex &mut);
13 };
14 }
15 
16 #endif // LOCKER_H