Trace 3.3
|
#include <trace.h>
Static Public Member Functions | |
static void | initialize () |
Initializes trace functionality. More... | |
static void | out (string str) |
static void | out (const char *format,...) |
static void | lock () |
Locks trace for other threads. | |
static void | unlock () |
Unlocks trace so other threads can access trace. | |
Prints debug information to a predefined output (output window).
|
static |
Initializes trace functionality.
Call this method prior to use trace functionality.
|
static |
Outputs a sequence of data formatted as the fromat argument specifies. This method can be used the same way as the traditional printf. The method will automatically add a new line too.
format | The string that contains the text to be printed. It can optionally contain embedded format specifiers that are replaced by the values specified in subsequent additional arguments and formatted as requested. |
|
static |
Outputs an STL string to the output window. The method will automatically add a new line, so the next string will be put automatically on the next line in the output window.
str | String to print to the output window. |