X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;h=dc9a2285be5919c519c7d67d7adfdee9ebea0711;hb=122846f0881673770d88eff7d925ecf25c01b62e;hp=71fbdf0c6e5796423274049dc28a05dfba42cbb2;hpb=1fd05fc0d04adf7441ed3a83089e3b8716a72c20;p=libs%2Fcore.git diff --git a/source/core/mutex.h b/source/core/mutex.h index 71fbdf0..dc9a228 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -1,6 +1,7 @@ #ifndef MSP_CORE_MUTEX_H_ #define MSP_CORE_MUTEX_H_ +#include "noncopyable.h" #include "refptr.h" namespace Msp { @@ -9,17 +10,15 @@ namespace Msp { A class for controlling mutually exclusive access to a resource. Only one thread can hold a lock on the mutex at a time. */ -class Mutex +class Mutex: private NonCopyable { friend class Semaphore; private: struct Private; - Private *priv; + Private *priv = 0; - Mutex(const Mutex &); - Mutex &operator=(const Mutex &); public: Mutex(); ~Mutex();