aboutsummaryrefslogtreecommitdiff
path: root/src/stable/mutexlocker.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
commitec05778d5718a7912e506764d443a78d6a6179e3 (patch)
tree78a9a01532180030c095acefc45763f07c14edb8 /src/stable/mutexlocker.h
parentb20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff)
downloadlibbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.gz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.bz2
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.xz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.zip
Converted tabs to spaces with tabconv.
Diffstat (limited to 'src/stable/mutexlocker.h')
-rw-r--r--src/stable/mutexlocker.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/stable/mutexlocker.h b/src/stable/mutexlocker.h
index 7c3c97e..30e71e6 100644
--- a/src/stable/mutexlocker.h
+++ b/src/stable/mutexlocker.h
@@ -3,19 +3,19 @@
3 3
4namespace Bu 4namespace Bu
5{ 5{
6 class Mutex; 6 class Mutex;
7 class MutexLocker 7 class MutexLocker
8 { 8 {
9 public: 9 public:
10 MutexLocker( Mutex &mu ); 10 MutexLocker( Mutex &mu );
11 virtual ~MutexLocker(); 11 virtual ~MutexLocker();
12 12
13 void unlock(); 13 void unlock();
14 void relock(); 14 void relock();
15 15
16 private: 16 private:
17 Mutex &mu; 17 Mutex &mu;
18 }; 18 };
19}; 19};
20 20
21#endif 21#endif