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 {
25 abort = 3,
27 retry = 4,
29 ignore = 5,
30 };
31 }
32}
33
37};
assert_dialog_result
Specifies identifiers to indicate the return value of an assert dialog box.
Definition assert_dialog_result.h:23
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
@ 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:36