00001 #ifndef __NITRO_ALLOCATOR_CPP__ 00002 #define __NITRO_ALLOCATOR_CPP__ 00003 00004 #include <utilities/allocator.h> 00005 00006 namespace nitro{ 00007 00008 Allocator DefaultAllocator; 00009 Allocator * ActiveAllocator( & DefaultAllocator ); 00010 00011 ALLOCATOR_DLL_ENTITY Allocator * GetAllocator( void ) 00012 { 00013 return( ActiveAllocator ); 00014 } 00015 } 00016 00017 #endif