blob: 76e5198b634e2e85ad9c0d0b397273aa8f0e5b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BU_ITO_LOCKER_H
#define BU_ITO_LOCKER_H
namespace Bu
{
class ItoMutex;
class ItoLocker
{
public:
ItoLocker( ItoMutex &mu );
virtual ~ItoLocker();
private:
ItoMutex & mu;
};
};
#endif
|