/* * $Id: Debug.cpp 82 2008-05-01 16:48:45Z rosiere $ * * [ Description ] * */ #include "Common/include/Debug.h" static uint32_t _debug_depth = 0; std::string debug_tab (void) { return std::string(_debug_depth,'\t'); } void debug_tab_inc (void) { // _debug_depth ++; } void debug_tab_dec (void) { // _debug_depth --; }