demonstrates the use of xtd::enable_debugs::enable_debug container.
#define DEBUG
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/debug_form>
#include <xtd/forms/enable_debug>
#include <xtd/forms/form>
#include <xtd/forms/text_box>
class form1 :
public form {
public:
form1() {
text(
"Enable debug example");
name("form1");
text_box1.location({10, 50});
text_box1.parent(*this);
text_box1.text("Text box");
text_box1.name("text_box1");
}
private:
};
auto main() -> int {
}
Represents a standard Windows text box.
Definition text_box.hpp:31
@ verbose
Output all debugging and tracing messages.
Definition trace_level.hpp:34