xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
|
#include <icontrol_trace.h>
Allow a control to be called by control_trace_listener for writing debug or trace message.
Inherits xtd::interface.
Inherited by xtd::forms::debug_form, and xtd::forms::trace_form.
Public Member Functions | |
virtual void | flush ()=0 |
Flushes the output buffer and causes buffered data to write to the control. | |
virtual void | write (const xtd::ustring &message)=0 |
Write debug or trace message on this instance control. | |
virtual void | write_line (const xtd::ustring &message)=0 |
Write debug or trace message on this instance control followed by line terminator. | |
|
pure virtual |
Flushes the output buffer and causes buffered data to write to the control.
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.
|
pure virtual |
Write debug or trace message on this instance control.
message | A string that tcontains the debug oor trace message. |
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.
|
pure virtual |
Write debug or trace message on this instance control followed by line terminator.
message | A string that tcontains the debug oor trace message. |
Implemented in xtd::forms::debug_form, and xtd::forms::trace_form.