voxelTerrain
 All Classes Functions Variables Typedefs Enumerations Pages
mutex.hpp
1 #ifndef BLUB_ASYNC_MUTEX_HPP
2 #define BLUB_ASYNC_MUTEX_HPP
3 
4 #include <mutex>
5 
6 
7 namespace blub
8 {
9 namespace async
10 {
11 
12 
13 class mutex : public std::mutex
14 {
15 public:
16  mutex()
17  {
18  }
19  bool tryLock()
20  {
21  return try_lock();
22  }
23 };
24 
25 
26 }
27 }
28 
29 #endif // BLUB_ASYNC_MUTEX_HPP
Definition: mutex.hpp:13
Definition: deadlineTimer.hpp:10