diff --git a/Allocators/public/Allocators.hpp b/Allocators/public/Allocators.hpp index 75a0844..b13c4ab 100644 --- a/Allocators/public/Allocators.hpp +++ b/Allocators/public/Allocators.hpp @@ -1,6 +1,6 @@ #pragma once -#include "BaseModule.hpp" +#include "Module.hpp" #include "HeapAllocatorGlobal.hpp" #include "HeapAllocator.hpp" diff --git a/Allocators/public/HeapAllocatorGlobal.hpp b/Allocators/public/HeapAllocatorGlobal.hpp index 7ada74c..36883cd 100644 --- a/Allocators/public/HeapAllocatorGlobal.hpp +++ b/Allocators/public/HeapAllocatorGlobal.hpp @@ -1,6 +1,6 @@ #pragma once -#include "BaseModule.hpp" +#include "Module.hpp" namespace tp { diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f2c109..4001897 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ project(Types) add_compile_definitions(MEM_DEBUG) -add_subdirectory(BaseModule) +add_subdirectory(Module) add_subdirectory(Utils) add_subdirectory(Containers) #add_subdirectory(Allocators) \ No newline at end of file diff --git a/Containers/public/ContainersCommon.hpp b/Containers/public/ContainersCommon.hpp index 20e8fb1..974c239 100644 --- a/Containers/public/ContainersCommon.hpp +++ b/Containers/public/ContainersCommon.hpp @@ -1,7 +1,7 @@ #pragma once -#include "BaseModule.hpp" +#include "Module.hpp" namespace tp { extern ModuleManifest gModuleContainers; diff --git a/BaseModule/CMakeLists.txt b/Module/CMakeLists.txt similarity index 100% rename from BaseModule/CMakeLists.txt rename to Module/CMakeLists.txt diff --git a/BaseModule/README.md b/Module/README.md similarity index 100% rename from BaseModule/README.md rename to Module/README.md diff --git a/BaseModule/private/Assert.cpp b/Module/private/Assert.cpp similarity index 100% rename from BaseModule/private/Assert.cpp rename to Module/private/Assert.cpp diff --git a/BaseModule/private/Common.cpp b/Module/private/Common.cpp similarity index 100% rename from BaseModule/private/Common.cpp rename to Module/private/Common.cpp diff --git a/BaseModule/private/Environment.cpp b/Module/private/Environment.cpp similarity index 100% rename from BaseModule/private/Environment.cpp rename to Module/private/Environment.cpp diff --git a/BaseModule/private/BaseModule.cpp b/Module/private/Module.cpp similarity index 93% rename from BaseModule/private/BaseModule.cpp rename to Module/private/Module.cpp index bd09cd7..ad5e91e 100644 --- a/BaseModule/private/BaseModule.cpp +++ b/Module/private/Module.cpp @@ -1,5 +1,5 @@ -#include "BaseModule.hpp" +#include "Module.hpp" #include diff --git a/BaseModule/public/Assert.hpp b/Module/public/Assert.hpp similarity index 100% rename from BaseModule/public/Assert.hpp rename to Module/public/Assert.hpp diff --git a/BaseModule/public/Common.hpp b/Module/public/Common.hpp similarity index 100% rename from BaseModule/public/Common.hpp rename to Module/public/Common.hpp diff --git a/BaseModule/public/Environment.hpp b/Module/public/Environment.hpp similarity index 100% rename from BaseModule/public/Environment.hpp rename to Module/public/Environment.hpp diff --git a/BaseModule/public/BaseModule.hpp b/Module/public/Module.hpp similarity index 100% rename from BaseModule/public/BaseModule.hpp rename to Module/public/Module.hpp diff --git a/BaseModule/public/TypeInfo.hpp b/Module/public/TypeInfo.hpp similarity index 100% rename from BaseModule/public/TypeInfo.hpp rename to Module/public/TypeInfo.hpp diff --git a/BaseModule/tests/Tests.cpp b/Module/tests/Tests.cpp similarity index 89% rename from BaseModule/tests/Tests.cpp rename to Module/tests/Tests.cpp index 4093d35..3a04aa1 100644 --- a/BaseModule/tests/Tests.cpp +++ b/Module/tests/Tests.cpp @@ -1,5 +1,5 @@ -#include "BaseModule.hpp" +#include "Module.hpp" int main() { tp::ModuleManifest* ModuleDependencies[] = { &tp::gModuleBase, nullptr }; diff --git a/TODO b/TODO index 6aaa6ab..8d70f64 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,9 @@ Containers: + ADd check copy times Addbuff Vector Vector 2d + AVL dont copy data just swap Strings: Implement @@ -13,4 +15,4 @@ Utils: Stack trace fixes Tokenizer: - Implement \ No newline at end of file + Implement diff --git a/Utils/public/Utils.hpp b/Utils/public/Utils.hpp index 4c235a3..9860f63 100644 --- a/Utils/public/Utils.hpp +++ b/Utils/public/Utils.hpp @@ -1,6 +1,6 @@ #pragma once -#include "BaseModule.hpp" +#include "Module.hpp" #define PTR_OFFSET(first, offset) (*((&first) + offset)) #define MEMBER_OFFSET(s, m) (alni(&(((s*)0)->m)))