#ifndef ALREADY_INCLUDED_2006_LIBD_DMM_HH
#define ALREADY_INCLUDED_2006_LIBD_DMM_HH
#include "enum-debug-code.hh"
///
/// NOTE: dmm stands for Debug Memory Management
///
#ifdef DMM_ONLINE
extern void* operator new (size_t size);
extern void operator delete (void* p);
extern void debug_dmm_print();
extern const char* dmm_decode(dmp::enum_debug_code debug_code);
#endif /* DMM_ONLINE */
#endif /* ALREADY_INCLUDED_2006_LIBD_DMM_HH */
| Back |