Classes | |
class | wxDebugContext |
A class for performing various debugging and memory tracing operations. More... | |
Macros | |
#define | WXTRACE(format, ...) |
#define | WXTRACELEVEL(level, format, ...) |
Functions | |
void | wxTrace (const wxString &format,...) |
void | wxTraceLevel (int level, const wxString &format,...) |
#define WXTRACE | ( | format, | |
... | |||
) |
Calls wxTrace() with printf-style variable argument syntax. Output is directed to the current output stream (see wxDebugContext).
Include file:
#include <wx/memory.h>
#define WXTRACELEVEL | ( | level, | |
format, | |||
... | |||
) |
Calls wxTraceLevel with printf-style variable argument syntax. Output is directed to the current output stream (see wxDebugContext). The first argument should be the level at which this information is appropriate. It will only be output if the level returned by wxDebugContext::GetLevel is equal to or greater than this value.
Include file:
#include <wx/memory.h>
void wxTrace | ( | const wxString & | format, |
... | |||
) |
Takes printf-style variable argument syntax. Output is directed to the current output stream (see wxDebugContext).
Include file:
#include <wx/memory.h>
void wxTraceLevel | ( | int | level, |
const wxString & | format, | ||
... | |||
) |
Takes printf() style variable argument syntax. Output is directed to the current output stream (see wxDebugContext). The first argument should be the level at which this information is appropriate. It will only be output if the level returned by wxDebugContext::GetLevel() is equal to or greater than this value.
Include file:
#include <wx/memory.h>