]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/mutex.h
Throw out anything polling related - they will go to libmspio eventually
[libs/core.git] / source / core / mutex.h
index b619fcdb7c6b9127a550a296c9f4cb521d0d3ecc..146b982806671fba20912a88f33af04d93c65b90 100644 (file)
@@ -1,5 +1,5 @@
 /*
-This file is part of libmspframework
+This file is part of libmspcore
 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
@@ -40,6 +40,9 @@ public:
        ~MutexLock()                  { mutex.unlock(); }
 private:
        Mutex &mutex;
+
+       MutexLock(const MutexLock &);
+       MutexLock &operator=(const MutexLock &);
 };