00001 /* 00002 * @file Tools/Debugging/DebugRegistry.cpp 00003 * Implementation of DebugRegistry 00004 * @author Michael Spranger 00005 * 00006 */ 00007 00008 #include "DebugDataTable.h" 00009 #include "Tools/Process.h" 00010 GT_GLOBAL DebugDataTable* debugDataTable; 00011 void initDebugDataTable(DebugDataTable* debugDataTablePtr) 00012 { 00013 debugDataTable = debugDataTablePtr; 00014 } 00015 DebugDataTable& getDebugDataTable() 00016 { 00017 return *debugDataTable; 00018 } 00019
1.3.6