From 055ac4b4605efe6ef79cacc7f8ca751cb6f09532 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Tue, 28 Jul 2026 18:55:28 +0200 Subject: [PATCH] Renaming --- .../Asset/{AssetA_fwd.cpp => AssetARef.cpp} | 4 ++-- .../Asset/{AssetB_fwd.cpp => AssetBRef.cpp} | 4 ++-- .../Asset/{AssetC_fwd.cpp => AssetCRef.cpp} | 4 ++-- .../Include/AssetsForTesting/Asset/AssetA.fbs | 2 +- .../Include/AssetsForTesting/Asset/AssetA.hpp | 4 ++-- .../Asset/{AssetA_fwd.hpp => AssetARef.hpp} | 6 +++--- .../Include/AssetsForTesting/Asset/AssetA_generated.hpp | 2 +- .../Include/AssetsForTesting/Asset/AssetB.fbs | 2 +- .../Include/AssetsForTesting/Asset/AssetB.hpp | 4 ++-- .../Asset/{AssetB_fwd.hpp => AssetBRef.hpp} | 6 +++--- .../Include/AssetsForTesting/Asset/AssetB_generated.hpp | 4 ++-- .../Include/AssetsForTesting/Asset/AssetC.fbs | 2 +- .../Include/AssetsForTesting/Asset/AssetC.hpp | 4 ++-- .../Asset/{AssetC_fwd.hpp => AssetCRef.hpp} | 6 +++--- .../Include/AssetsForTesting/Asset/AssetC_generated.hpp | 6 +++--- 15 files changed, 30 insertions(+), 30 deletions(-) rename Bigfoot/Tests/Misc/AssetsForTesting/Asset/{AssetA_fwd.cpp => AssetARef.cpp} (75%) rename Bigfoot/Tests/Misc/AssetsForTesting/Asset/{AssetB_fwd.cpp => AssetBRef.cpp} (75%) rename Bigfoot/Tests/Misc/AssetsForTesting/Asset/{AssetC_fwd.cpp => AssetCRef.cpp} (75%) rename Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/{AssetA_fwd.hpp => AssetARef.hpp} (72%) rename Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/{AssetB_fwd.hpp => AssetBRef.hpp} (72%) rename Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/{AssetC_fwd.hpp => AssetCRef.hpp} (72%) diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetA_fwd.cpp b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetARef.cpp similarity index 75% rename from Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetA_fwd.cpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetARef.cpp index 2d3a1d5..a7165e4 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetA_fwd.cpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetARef.cpp @@ -1,9 +1,9 @@ /********************************************************************* - * \file AssetA_fwd.cpp + * \file AssetARef.cpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#include +#include ASSET_REF_IMPL(AssetA, ::Bigfoot::AssetA) diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetB_fwd.cpp b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetBRef.cpp similarity index 75% rename from Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetB_fwd.cpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetBRef.cpp index 3082736..066ea8e 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetB_fwd.cpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetBRef.cpp @@ -1,9 +1,9 @@ /********************************************************************* - * \file AssetB_fwd.cpp + * \file AssetBRef.cpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#include +#include ASSET_REF_IMPL(AssetB, ::Bigfoot::AssetB) diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetC_fwd.cpp b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetCRef.cpp similarity index 75% rename from Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetC_fwd.cpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetCRef.cpp index 6f95f05..62f0e3a 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetC_fwd.cpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Asset/AssetCRef.cpp @@ -1,9 +1,9 @@ /********************************************************************* - * \file AssetC_fwd.cpp + * \file AssetCRef.cpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#include +#include ASSET_REF_IMPL(AssetC, ::Bigfoot::AssetC) diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.fbs b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.fbs index 844f89b..c22e5f3 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.fbs +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.fbs @@ -1,6 +1,6 @@ include "Engine/Asset/Reference.fbs"; -native_include "AssetsForTesting/Asset/AssetA_fwd.hpp"; +native_include "AssetsForTesting/Asset/AssetARef.hpp"; namespace Flat.Bigfoot; diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.hpp index 2a733c7..9bee1f1 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA.hpp @@ -4,8 +4,8 @@ * \author Romain BOULLARD * \date April 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETA_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETA_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETA_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETA_HPP #include #include diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_fwd.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetARef.hpp similarity index 72% rename from Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_fwd.hpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetARef.hpp index 3cadfd7..6ff87bf 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_fwd.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetARef.hpp @@ -1,11 +1,11 @@ /********************************************************************* - * \file AssetA_fwd.hpp + * \file AssetARef.hpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETA_FWD_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETA_FWD_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETAREF_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETAREF_HPP #include namespace Bigfoot diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_generated.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_generated.hpp index 62f4185..2c01d6c 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_generated.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetA_generated.hpp @@ -16,7 +16,7 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 && #include "Engine/Asset/Reference.hpp" #include "System/UUID/UUID.hpp" #include "Engine/Asset/Reference.hpp" -#include "AssetsForTesting/Asset/AssetA_fwd.hpp" +#include "AssetsForTesting/Asset/AssetARef.hpp" #include "Engine/Asset/Reference_generated.hpp" #include "EASTL/unique_ptr.h" diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.fbs b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.fbs index efe2ecc..84b0349 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.fbs +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.fbs @@ -2,7 +2,7 @@ include "Engine/Asset/Reference.fbs"; include "AssetsForTesting/Asset/AssetA.fbs"; -native_include "AssetsForTesting/Asset/AssetB_fwd.hpp"; +native_include "AssetsForTesting/Asset/AssetBRef.hpp"; namespace Flat.Bigfoot; diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.hpp index 0be86ef..cc87034 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB.hpp @@ -4,8 +4,8 @@ * \author Romain BOULLARD * \date April 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETB_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETB_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETB_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETB_HPP #include #include diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_fwd.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetBRef.hpp similarity index 72% rename from Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_fwd.hpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetBRef.hpp index 5b2d3c3..302d2e9 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_fwd.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetBRef.hpp @@ -1,11 +1,11 @@ /********************************************************************* - * \file AssetB_fwd.hpp + * \file AssetBRef.hpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETB_FWD_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETB_FWD_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETBREF_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETBREF_HPP #include namespace Bigfoot diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_generated.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_generated.hpp index bbafa1c..022e574 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_generated.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetB_generated.hpp @@ -16,8 +16,8 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 && #include "Engine/Asset/Reference.hpp" #include "System/UUID/UUID.hpp" #include "Engine/Asset/Reference.hpp" -#include "AssetsForTesting/Asset/AssetA_fwd.hpp" -#include "AssetsForTesting/Asset/AssetB_fwd.hpp" +#include "AssetsForTesting/Asset/AssetARef.hpp" +#include "AssetsForTesting/Asset/AssetBRef.hpp" #include "Engine/Asset/Reference_generated.hpp" #include "AssetsForTesting/Asset/AssetA_generated.hpp" diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.fbs b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.fbs index c4a1069..78fbd2e 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.fbs +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.fbs @@ -3,7 +3,7 @@ include "Engine/Asset/Reference.fbs"; include "AssetsForTesting/Asset/AssetA.fbs"; include "AssetsForTesting/Asset/AssetB.fbs"; -native_include "AssetsForTesting/Asset/AssetC_fwd.hpp"; +native_include "AssetsForTesting/Asset/AssetCRef.hpp"; namespace Flat.Bigfoot; diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.hpp index cde010e..ecf5fae 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC.hpp @@ -4,8 +4,8 @@ * \author Romain BOULLARD * \date April 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETC_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETC_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETC_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETC_HPP #include #include diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_fwd.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetCRef.hpp similarity index 72% rename from Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_fwd.hpp rename to Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetCRef.hpp index 974e334..d225707 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_fwd.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetCRef.hpp @@ -1,11 +1,11 @@ /********************************************************************* - * \file AssetC_fwd.hpp + * \file AssetCRef.hpp * * \author Romain BOULLARD * \date May 2026 *********************************************************************/ -#ifndef BIGFOOT_ENGINETESTS_ASSET_ASSETC_FWD_HPP -#define BIGFOOT_ENGINETESTS_ASSET_ASSETC_FWD_HPP +#ifndef BIGFOOT_ASSETSFORTESTING_ASSET_ASSETCREF_HPP +#define BIGFOOT_ASSETSFORTESTING_ASSET_ASSETCREF_HPP #include namespace Bigfoot diff --git a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_generated.hpp b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_generated.hpp index 111199a..464c640 100644 --- a/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_generated.hpp +++ b/Bigfoot/Tests/Misc/AssetsForTesting/Include/AssetsForTesting/Asset/AssetC_generated.hpp @@ -16,9 +16,9 @@ static_assert(FLATBUFFERS_VERSION_MAJOR == 25 && #include "Engine/Asset/Reference.hpp" #include "System/UUID/UUID.hpp" #include "Engine/Asset/Reference.hpp" -#include "AssetsForTesting/Asset/AssetA_fwd.hpp" -#include "AssetsForTesting/Asset/AssetB_fwd.hpp" -#include "AssetsForTesting/Asset/AssetC_fwd.hpp" +#include "AssetsForTesting/Asset/AssetARef.hpp" +#include "AssetsForTesting/Asset/AssetBRef.hpp" +#include "AssetsForTesting/Asset/AssetCRef.hpp" #include "Engine/Asset/Reference_generated.hpp" #include "AssetsForTesting/Asset/AssetA_generated.hpp" #include "AssetsForTesting/Asset/AssetB_generated.hpp"