mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-26 04:25:00 +03:00
62519b19fe
#includes.
23 lines
293 B
C++
23 lines
293 B
C++
#ifndef CLOCK_H
|
|
#define CLOCK_H
|
|
|
|
class CMutex;
|
|
class CCondVarBase;
|
|
|
|
class CLock {
|
|
public:
|
|
CLock(const CMutex* mutex);
|
|
CLock(const CCondVarBase* cv);
|
|
~CLock();
|
|
|
|
private:
|
|
// not implemented
|
|
CLock(const CLock&);
|
|
CLock& operator=(const CLock&);
|
|
|
|
private:
|
|
const CMutex* m_mutex;
|
|
};
|
|
|
|
#endif
|