From 73bb0e9cfa4c67916bb2f10132870f2f8c8a1397 Mon Sep 17 00:00:00 2001 From: _Redstone_c_ Date: Thu, 23 Dec 2021 23:30:07 +0800 Subject: [PATCH] feat(typetraits): add TypeTraits/TypeTraits.h --- .../Source/Private/Testing/TypeTraitsTesting.cpp | 7 +------ Redcraft.Utility/Source/Public/TypeTraits/TypeTraits.h | 9 +++++++++ 2 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 Redcraft.Utility/Source/Public/TypeTraits/TypeTraits.h diff --git a/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp b/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp index 097869e..a78adc8 100644 --- a/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp +++ b/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp @@ -1,11 +1,6 @@ #include "Testing/TypeTraitsTesting.h" #include "Misc/AssertionMacros.h" -#include "TypeTraits/HelperClasses.h" -#include "TypeTraits/PrimaryType.h" -#include "TypeTraits/CompositeType.h" -#include "TypeTraits/TypeProperties.h" -#include "TypeTraits/SupportedOperations.h" -#include "TypeTraits/Miscellaneous.h" +#include "TypeTraits/TypeTraits.h" NAMESPACE_REDCRAFT_BEGIN NAMESPACE_MODULE_BEGIN(Redcraft) diff --git a/Redcraft.Utility/Source/Public/TypeTraits/TypeTraits.h b/Redcraft.Utility/Source/Public/TypeTraits/TypeTraits.h new file mode 100644 index 0000000..c925295 --- /dev/null +++ b/Redcraft.Utility/Source/Public/TypeTraits/TypeTraits.h @@ -0,0 +1,9 @@ +#pragma once + +#include "CoreTypes.h" +#include "TypeTraits/HelperClasses.h" +#include "TypeTraits/PrimaryType.h" +#include "TypeTraits/CompositeType.h" +#include "TypeTraits/TypeProperties.h" +#include "TypeTraits/SupportedOperations.h" +#include "TypeTraits/Miscellaneous.h"