Adjusted workflow.
This commit is contained in:
34
include/ehs/system/BaseMutex.h
Normal file
34
include/ehs/system/BaseMutex.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#pragma once
|
||||
|
||||
#include "ehs/EHS.h"
|
||||
|
||||
namespace ehs
|
||||
{
|
||||
class BaseMutex
|
||||
{
|
||||
protected:
|
||||
bool initialized;
|
||||
bool locked;
|
||||
|
||||
public:
|
||||
virtual ~BaseMutex();
|
||||
|
||||
BaseMutex();
|
||||
|
||||
BaseMutex(const BaseMutex& mutex);
|
||||
|
||||
BaseMutex& operator=(const BaseMutex& mutex);
|
||||
|
||||
virtual void Initialize();
|
||||
|
||||
virtual void UnInitialize();
|
||||
|
||||
bool IsInitialized() const;
|
||||
|
||||
virtual void Lock();
|
||||
|
||||
virtual void Unlock();
|
||||
|
||||
bool IsLocked() const;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user