mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 20:12:39 +03:00
6aba3a6f57
being listed and they'd have to be added to every one. just doesn't seem worth the trouble.
25 lines
320 B
C++
25 lines
320 B
C++
#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();
|
|
|
|
private:
|
|
// not implemented
|
|
CLock(const CLock&);
|
|
CLock& operator=(const CLock&);
|
|
|
|
private:
|
|
const CMutex* m_mutex;
|
|
};
|
|
|
|
#endif
|