AuroraRuntime/Include/Aurora/Threading/Threads/TLSStaticVariable.hpp
2021-06-27 22:25:29 +01:00

17 lines
360 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: TLSStaticVariable.hpp
Date: 2021-6-11
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Threads
{
template<typename T>
class TLSStaticVariable
{
// TODO: implement templates for a thread feature based tls implementation
};
}