mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
Added a Memory Manager to trace memory leaks. Fixed some memory leaks detected with the new memory manager. Added an allocator for STL ( to use it with the custom allocation seted in the memory manager ). Fixed Makefiles ( i wroke them ).
10 lines
143 B
C++
10 lines
143 B
C++
#ifndef EE_BASE_BASE_HPP
|
|
#define EE_BASE_BASE_HPP
|
|
|
|
#include "memorymanager.hpp"
|
|
#include "allocator.hpp"
|
|
#include "stlcontainers.hpp"
|
|
|
|
#endif
|
|
|