BS 0.0.1 [Runtime]/Generics
This commit is contained in:
1756
Convention/[Runtime]/Config.hpp
Normal file
1756
Convention/[Runtime]/Config.hpp
Normal file
File diff suppressed because it is too large
Load Diff
16
Convention/[Runtime]/Generics/NTree.hpp
Normal file
16
Convention/[Runtime]/Generics/NTree.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#ifndef Convention_Runtime_Generics_NTree_hpp
|
||||
#define Convention_Runtime_Generics_NTree_hpp
|
||||
|
||||
#include"Config.hpp"
|
||||
|
||||
namespace Convention
|
||||
{
|
||||
namespace Generics
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif Convention_Runtime_Generics_NTree_hpp
|
21
Convention/[Runtime]/Generics/Sequence.hpp
Normal file
21
Convention/[Runtime]/Generics/Sequence.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
#ifndef Convention_Runtime_Generics_Sequence_hpp
|
||||
#define Convention_Runtime_Generics_Sequence_hpp
|
||||
|
||||
#include"Config.hpp"
|
||||
|
||||
namespace Convention
|
||||
{
|
||||
namespace Generics
|
||||
{
|
||||
|
||||
template<typename Element, size_t size>
|
||||
using Array = std::array<Element, size>;
|
||||
|
||||
template<typename Element, template<typename> class Allocator>
|
||||
using Vector = std::vector<Element, Allocator<Element>>;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif Convention_Runtime_Generics_Sequence_hpp
|
Reference in New Issue
Block a user