AuroraRuntime/Source/Threading/Primitives/IConditionMutexEx.hpp
2021-06-27 22:25:29 +01:00

17 lines
334 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IConditionMutexEx.hpp
Date: 2021-6-14
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
class IConditionMutexEx : public IConditionMutex
{
public:
virtual AuUInt GetOSHandle() = 0;
};
}