13 lines
240 B
C++
13 lines
240 B
C++
|
/***
|
||
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: Mutex.hpp
|
||
|
Date: 2021-6-9
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Threading::Primitives
|
||
|
{
|
||
|
AUKN_SHARED_API(Mutex, IWaitable);
|
||
|
}
|