xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
icontrol_trace.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include <xtd/interface>
6
#include <xtd/string>
7
9
namespace
xtd
{
11
namespace
forms
{
22
class
icontrol_trace
interface_
{
23
public
:
25
29
virtual
void
write
(
const
xtd::string
&
message
) = 0;
30
33
virtual
void
write_line
(
const
xtd::string
&
message
) = 0;
34
36
virtual
void
flush
() = 0;
38
};
39
}
40
}
xtd::forms::icontrol_trace
Allow a control to be called by control_trace_listener for writing debug or trace message.
Definition
icontrol_trace.hpp:22
xtd::forms::icontrol_trace::write_line
virtual void write_line(const xtd::string &message)=0
Write debug or trace message on this instance control followed by line terminator.
xtd::forms::icontrol_trace::write
virtual void write(const xtd::string &message)=0
Write debug or trace message on this instance control.
xtd::forms::icontrol_trace::flush
virtual void flush()=0
Flushes the output buffer and causes buffered data to write to the control.
interface_
#define interface_
This keyword is use to represent an interface.
Definition
interface.hpp:58
xtd::string
xtd::basic_string< char > string
Represents text as a sequence of UTF-8 code units.
Definition
__string_definitions.hpp:43
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition
texts.hpp:219
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
xtd::forms::message
Implements a Windows message.
Definition
message.hpp:33
Generated on
for xtd by
Gammasoft
. All rights reserved.