Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/audaspace/intern/AUD_MutexLock.h')
-rw-r--r--intern/audaspace/intern/AUD_MutexLock.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/intern/audaspace/intern/AUD_MutexLock.h b/intern/audaspace/intern/AUD_MutexLock.h
deleted file mode 100644
index b6f6d2b4334..00000000000
--- a/intern/audaspace/intern/AUD_MutexLock.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef AUD_MUTEXLOCK_H
-#define AUD_MUTEXLOCK_H
-
-#include "AUD_ILockable.h"
-
-class AUD_MutexLock
-{
-public:
- inline AUD_MutexLock(AUD_ILockable& lockable) :
- lockable(lockable)
- {
- lockable.lock();
- }
-
- inline ~AUD_MutexLock()
- {
- lockable.unlock();
- }
-
-private:
- AUD_ILockable& lockable;
-};
-
-#endif // AUD_MUTEXLOCK_H