]> git.tdb.fi Git - libs/core.git/blob - source/core/mutex_private.h
Make sure all classes have sensible copy semantics
[libs/core.git] / source / core / mutex_private.h
1 #ifndef MSP_CORE_MUTEX_PRIVATE_H_
2 #define MSP_CORE_MUTEX_PRIVATE_H_
3
4 #include "mutex.h"
5 #include "mutex_platform.h"
6
7 namespace Msp {
8
9 struct Mutex::Private
10 {
11         PlatformMutex mutex;
12 };
13
14 } // namespace Msp
15
16 #endif