#include <cstdarg>
#include <cstdio>
#include <fstream>
#include <sstream>
#include "sot/core/api.hh"
Go to the source code of this file.
◆ SOT_COMMON_TRACES
      
        
          | #define SOT_COMMON_TRACES | 
      
 
Value:do {                                                          \
    va_list arg;                                                \
    va_start(arg, format);                                      \
    vsnprintf(charbuffer, SIZE, format, arg);                   \
    va_end(arg);                                                \
    outputbuffer << tmpbuffer.str() << charbuffer << std::endl; \
  } while (0)
VP_TEMPLATE_DEBUG_MODE. 
Definition at line 27 of file debug.hh.
 
 
◆ sotDEBUG
      
        
          | #define sotDEBUG | ( |  | level | ) |  | 
      
 
Value:if (1)                \
    ;                   \
  else                  \
    ::dynamicgraph::sot::__null_stream()
Definition at line 165 of file debug.hh.
 
 
◆ sotDEBUG_ENABLE
      
        
          | #define sotDEBUG_ENABLE | ( |  | level | ) | false | 
      
 
 
◆ sotDEBUGIN
      
        
          | #define sotDEBUGIN | ( |  | level | ) | sotDEBUG(level) << "# In {" << std::endl | 
      
 
 
◆ sotDEBUGINOUT
      
        
          | #define sotDEBUGINOUT | ( |  | level | ) | sotDEBUG(level) << "# In/Out { }" << std::endl | 
      
 
 
◆ sotDEBUGMUTE
      
        
          | #define sotDEBUGMUTE | ( |  | level | ) |  | 
      
 
Value:if (1)                    \
    ;                       \
  else                      \
    ::dynamicgraph::sot::__null_stream()
Definition at line 170 of file debug.hh.
 
 
◆ sotDEBUGOUT
      
        
          | #define sotDEBUGOUT | ( |  | level | ) | sotDEBUG(level) << "# Out }" << std::endl | 
      
 
 
◆ sotERROR
      
        
          | #define sotERROR   sotERRORFLOW.outputbuffer << sotPREERROR | 
      
 
 
◆ sotPREERROR
      
        
          | #define sotPREERROR   "\t!! " << __FILE__ << ": " << __FUNCTION__ << "(#" << __LINE__ << ") :" | 
      
 
 
◆ sotTDEBUG
      
        
          | #define sotTDEBUG | ( |  | level | ) |  | 
      
 
Value:if (1)                 \
    ;                    \
  else                   \
    ::dynamicgraph::sot::__null_stream()
Definition at line 193 of file debug.hh.
 
 
◆ sotTDEBUG_ENABLE
      
        
          | #define sotTDEBUG_ENABLE | ( |  | level | ) | false | 
      
 
 
◆ sotTDEBUGIN
      
        
          | #define sotTDEBUGIN | ( |  | level | ) | sotTDEBUG(level) << "# In {" << std::endl | 
      
 
 
◆ sotTDEBUGINOUT
      
        
          | #define sotTDEBUGINOUT | ( |  | level | ) | sotTDEBUG(level) << "# In/Out { }" << std::endl | 
      
 
 
◆ sotTDEBUGOUT
      
        
          | #define sotTDEBUGOUT | ( |  | level | ) | sotTDEBUG(level) << "# Out }" << std::endl | 
      
 
 
◆ VP_DEBUG_MODE
◆ VP_TEMPLATE_DEBUG_MODE
      
        
          | #define VP_TEMPLATE_DEBUG_MODE   0 | 
      
 
VP_DEBUG_MODE. 
Definition at line 24 of file debug.hh.