QL_TRACE_DISABLE (3) - Linux Manuals
NAME
Debugging macros -
Defines
#define QL_TRACE_ENABLE
enable tracing
#define QL_TRACE_DISABLE
disable tracing
#define QL_TRACE_ON(out)
set tracing stream
#define QL_TRACE(message)
output tracing information
#define QL_TRACE_ENTER_FUNCTION
output tracing information
#define QL_TRACE_EXIT_FUNCTION
output tracing information
#define QL_TRACE_LOCATION
output tracing information
#define QL_TRACE_VARIABLE(variable)
output tracing information
Detailed Description
For debugging purposes, macros can be used to output information about the code being executed.
Define Documentation
#define QL_TRACE_ENABLE
enable tracing
The statement
QL_TRACE_ENABLE;
Examples: tracing_example.cpp.
#define QL_TRACE_DISABLE
disable tracing
The statement
QL_TRACE_DISABLE;
#define QL_TRACE_ON(out)
set tracing stream
The statement
QL_TRACE_ON(stream);
#define QL_TRACE(message)
output tracing information
The statement
QL_TRACE(message);
Examples: tracing_example.cpp.
#define QL_TRACE_ENTER_FUNCTION
output tracing information
The statement
QL_TRACE_ENTER_FUNCTION;
Examples: tracing_example.cpp.
#define QL_TRACE_EXIT_FUNCTION
output tracing information
The statement
QL_TRACE_EXIT_FUNCTION;
Examples: tracing_example.cpp.
#define QL_TRACE_LOCATION
output tracing information
The statement
QL_TRACE_LOCATION;
Examples: tracing_example.cpp.
#define QL_TRACE_VARIABLE(variable)
output tracing information
The statement
QL_TRACE_VARIABLE(variable);
Examples: tracing_example.cpp.
Author
Generated automatically by Doxygen for QuantLib from the source code.