barrier/mt/CLock.h

25 lines
320 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef CLOCK_H
#define CLOCK_H
#include "common.h"
class CMutex;
class CCondVarBase;
class CLock {
public:
CLock(const CMutex* mutex);
CLock(const CCondVarBase* cv);
~CLock();
2001-10-06 14:13:28 +00:00
private:
// not implemented
CLock(const CLock&);
CLock& operator=(const CLock&);
private:
const CMutex* m_mutex;
};
#endif