xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.core
include
xtd
diagnostics
assert_dialog_result.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
../enum.hpp
"
6
8
namespace
xtd
{
10
namespace
diagnostics
{
25
enum class
assert_dialog_result
{
27
abort
= 3,
29
retry
= 4,
31
ignore
= 5,
32
};
33
}
34
}
35
37
template
<>
struct
xtd::enum_register
<
xtd
::
diagnostics::assert_dialog_result
> {
38
static
auto
values
()
noexcept
{
return
xtd::enum_collection<xtd::diagnostics::assert_dialog_result>
{{
xtd::diagnostics::assert_dialog_result::abort
,
"abort"
}, {
xtd::diagnostics::assert_dialog_result::retry
,
"retry"
}, {
xtd::diagnostics::assert_dialog_result::ignore
,
"ignore"
}};}
39
};
enum.hpp
Contains enum_ and enum_ut_ keywords.
xtd::diagnostics::assert_dialog_result
assert_dialog_result
Specifies identifiers to indicate the return value of an assert dialog box.
Definition
assert_dialog_result.hpp:25
xtd::enum_collection
std::vector< std::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.hpp:24
xtd::diagnostics::assert_dialog_result::retry
@ retry
The assert dialog return value is Retry (usually sent from a button labeled Retry).
Definition
assert_dialog_result.hpp:29
xtd::diagnostics::assert_dialog_result::ignore
@ ignore
The assert dialog return value is Ignore (usually sent from a button labeled Ignore).
Definition
assert_dialog_result.hpp:31
xtd::diagnostics::assert_dialog_result::abort
@ abort
The assert dialog return value is Abort (usually sent from a button labeled Abort).
Definition
assert_dialog_result.hpp:27
xtd::diagnostics
The xtd::diagnostics namespace provides classes that allow you to interact with system processes,...
Definition
assert_dialog_result.hpp:10
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
xtd::enum_register
Provides the registration struct for enumerations.
Definition
enum_register.hpp:38
xtd::enum_register::values
static auto values() noexcept
Definition
enum_register.hpp:55
Generated on
for xtd by
Gammasoft
. All rights reserved.