Disable copy on Mutex, it is not possible to copy a mutex

This commit is contained in:
Micke Prag 2011-03-01 18:06:47 +00:00
parent 8328d2b609
commit b717a62e81

View file

@ -22,6 +22,8 @@ namespace TelldusCore {
virtual void unlock();
private:
Mutex(const Mutex&); //Disable copy
Mutex& operator = (const Mutex&);
class PrivateData;
PrivateData *d;
};