X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;h=3d3dc84dd3bca28e65c0ea770b00cc6851b6f552;hp=71fbdf0c6e5796423274049dc28a05dfba42cbb2;hb=c3e242c2629cbc9645258b30aaf07b7285d4372b;hpb=3169ab5078b0ab9147b8e23ad98c0294dda1baec diff --git a/source/core/mutex.h b/source/core/mutex.h index 71fbdf0..3d3dc84 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,7 +10,7 @@ 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; @@ -18,8 +19,6 @@ private: Private *priv; - Mutex(const Mutex &); - Mutex &operator=(const Mutex &); public: Mutex(); ~Mutex();