]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/mutex.h
Style and comment updates
[libs/core.git] / source / core / mutex.h
index 18f9039227e1feb19e7860811e7487a2338dfd9a..0fe9e82087ff67d4c51d1d7bcde0f2a10d668138 100644 (file)
@@ -35,21 +35,19 @@ public:
 };
 
 /**
-Locks the mutex for te lifetime of the object.
+Locks the mutex for the lifetime of the object.
 */
 class MutexLock
 {
 private:
        Mutex &mutex;
 
+       MutexLock(const MutexLock &);
 public:
        MutexLock(Mutex &m, bool l = true): mutex(m) { if(l) mutex.lock(); }
        ~MutexLock() { mutex.unlock(); }
 
        void lock() { mutex.lock(); }
-private:
-       MutexLock(const MutexLock &);
-       MutexLock &operator=(const MutexLock &);
 };
 
 /**
@@ -59,15 +57,16 @@ exists, the mutex will stay locked.
 template<typename T>
 class MutexPtr
 {
+private:
+       RefPtr<MutexLock> mutex;
+       T *data;
+
 public:
        MutexPtr(T *d, Mutex &m): mutex(new MutexLock(m)), data(d) { }
 
        T &operator*() const { return *data; }
        T *operator->() const { return data; }
-       void clear() { mutex=0; data = 0; }
-private:
-       RefPtr<MutexLock> mutex;
-       T *data;
+       void clear() { mutex = 0; data = 0; }
 };
 
 }