xtd 0.2.0
Loading...
Searching...
No Matches
assert_dialog_result.h
Go to the documentation of this file.
1
4#pragma once
5#include "../enum.h"
6
8namespace xtd {
10 namespace diagnostics {
27 abort = 3,
29 retry = 4,
31 ignore = 5,
32 };
33 }
34}
35
39};
assert_dialog_result
Specifies identifiers to indicate the return value of an assert dialog box.
Definition assert_dialog_result.h:25
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
@ retry
The assert dialog return value is Retry (usually sent from a button labeled Retry).
@ ignore
The assert dialog return value is Ignore (usually sent from a button labeled Ignore).
@ abort
The assert dialog return value is Abort (usually sent from a button labeled Abort).
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:38