AuroraRuntime/Include/Aurora/Threading/Threads/TLSStaticVariable.hpp

17 lines
360 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
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
};
}