Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef ScopedMutex_INCLUDE_ONCE
00033 #define ScopedMutex_INCLUDE_ONCE
00034
00035 #include <vlCore/IMutex.hpp>
00036
00037 namespace vl
00038 {
00039
00040
00041
00043 class ScopedMutex
00044 {
00045 public:
00047 ScopedMutex(IMutex* mutex): mMutex(mutex)
00048 {
00049 if (mMutex)
00050 mMutex->lock();
00051 }
00052
00054 ~ScopedMutex()
00055 {
00056 if (mMutex)
00057 mMutex->unlock();
00058 }
00059
00060 private:
00061 IMutex* mMutex;
00062 };
00063 }
00064 #endif