Rename BaseModule to Module
This commit is contained in:
parent
479c3fa667
commit
47a7809398
18 changed files with 10 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
#include "HeapAllocatorGlobal.hpp"
|
#include "HeapAllocatorGlobal.hpp"
|
||||||
#include "HeapAllocator.hpp"
|
#include "HeapAllocator.hpp"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
namespace tp {
|
namespace tp {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ project(Types)
|
||||||
|
|
||||||
add_compile_definitions(MEM_DEBUG)
|
add_compile_definitions(MEM_DEBUG)
|
||||||
|
|
||||||
add_subdirectory(BaseModule)
|
add_subdirectory(Module)
|
||||||
add_subdirectory(Utils)
|
add_subdirectory(Utils)
|
||||||
add_subdirectory(Containers)
|
add_subdirectory(Containers)
|
||||||
#add_subdirectory(Allocators)
|
#add_subdirectory(Allocators)
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
namespace tp {
|
namespace tp {
|
||||||
extern ModuleManifest gModuleContainers;
|
extern ModuleManifest gModuleContainers;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
tp::ModuleManifest* ModuleDependencies[] = { &tp::gModuleBase, nullptr };
|
tp::ModuleManifest* ModuleDependencies[] = { &tp::gModuleBase, nullptr };
|
||||||
2
TODO
2
TODO
|
|
@ -1,7 +1,9 @@
|
||||||
Containers:
|
Containers:
|
||||||
|
ADd check copy times
|
||||||
Addbuff
|
Addbuff
|
||||||
Vector
|
Vector
|
||||||
Vector 2d
|
Vector 2d
|
||||||
|
AVL dont copy data just swap
|
||||||
|
|
||||||
Strings:
|
Strings:
|
||||||
Implement
|
Implement
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "BaseModule.hpp"
|
#include "Module.hpp"
|
||||||
|
|
||||||
#define PTR_OFFSET(first, offset) (*((&first) + offset))
|
#define PTR_OFFSET(first, offset) (*((&first) + offset))
|
||||||
#define MEMBER_OFFSET(s, m) (alni(&(((s*)0)->m)))
|
#define MEMBER_OFFSET(s, m) (alni(&(((s*)0)->m)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue