Disable copy on Mutex, it is not possible to copy a mutex
This commit is contained in:
parent
8328d2b609
commit
b717a62e81
1 changed files with 6 additions and 4 deletions
|
@ -22,6 +22,8 @@ namespace TelldusCore {
|
|||
virtual void unlock();
|
||||
|
||||
private:
|
||||
Mutex(const Mutex&); //Disable copy
|
||||
Mutex& operator = (const Mutex&);
|
||||
class PrivateData;
|
||||
PrivateData *d;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue