lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
memory.h
00001 /*****************************************************/
00002 /* lean Memory                  (c) Tobias Zirr 2011 */
00003 /*****************************************************/
00004 
00005 #ifndef LEAN_MEMORY
00006 #define LEAN_MEMORY
00007 
00008 namespace lean
00009 {
00011     namespace memory { }
00012 }
00013 
00014 #include "new_handler.h"
00015 
00016 #include "alignment.h"
00017 #include "crt_heap.h"
00018 #include "default_heap.h"
00019 
00020 #include "heap_allocator.h"
00021 
00022 #include "heap_bound.h"
00023 #include "aligned.h"
00024 
00026 
00027 #endif