From f314ffc2f72aa5bcfa2df7c7d4a5ae9c2d50ec89 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Wed, 13 May 2026 22:47:39 +0200 Subject: [PATCH] Slot maps --- .../Include/Utils/Containers/SlotMap.hpp | 10 ++++++++++ Bigfoot/Tests/Utils/Containers/SlotMap.cpp | 19 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 Bigfoot/Sources/Utils/Include/Utils/Containers/SlotMap.hpp create mode 100644 Bigfoot/Tests/Utils/Containers/SlotMap.cpp diff --git a/Bigfoot/Sources/Utils/Include/Utils/Containers/SlotMap.hpp b/Bigfoot/Sources/Utils/Include/Utils/Containers/SlotMap.hpp new file mode 100644 index 0000000..e5994cf --- /dev/null +++ b/Bigfoot/Sources/Utils/Include/Utils/Containers/SlotMap.hpp @@ -0,0 +1,10 @@ +/********************************************************************* + * \file SlotMap.hpp + * + * \author Romain BOULLARD + * \date May 2026 + *********************************************************************/ +#ifndef BIGFOOT_UTILS_CONTAINERS_SLOTMAP_HPP +#define BIGFOOT_UTILS_CONTAINERS_SLOTMAP_HPP + +#endif diff --git a/Bigfoot/Tests/Utils/Containers/SlotMap.cpp b/Bigfoot/Tests/Utils/Containers/SlotMap.cpp new file mode 100644 index 0000000..78c774b --- /dev/null +++ b/Bigfoot/Tests/Utils/Containers/SlotMap.cpp @@ -0,0 +1,19 @@ +/********************************************************************* + * \file SlotMap.cpp + * + * \author Romain BOULLARD + * \date May 2026 + *********************************************************************/ +#include + +#include + +namespace Bigfoot +{ +class SlotMapFixture: public ::testing::Test +{ + protected: +}; + + +} // namespace Bigfoot