2001-10-06 14:13:28 +00:00
|
|
|
#ifndef CLOCK_H
|
|
|
|
#define CLOCK_H
|
|
|
|
|
|
|
|
class CMutex;
|
|
|
|
class CCondVarBase;
|
|
|
|
|
|
|
|
class CLock {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-14 16:58:01 +00:00
|
|
|
CLock(const CMutex* mutex);
|
|
|
|
CLock(const CCondVarBase* cv);
|
|
|
|
~CLock();
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
// not implemented
|
|
|
|
CLock(const CLock&);
|
|
|
|
CLock& operator=(const CLock&);
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
const CMutex* m_mutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|