xtd 0.2.0
assert_dialog_result.h
Go to the documentation of this file.
1 #pragma once
5 #include "../enum.h"
6 
8 namespace xtd {
10  namespace diagnostics {
23  enum class assert_dialog_result {
25  abort = 3,
27  retry = 4,
29  ignore = 5,
30  };
31  }
32 }
33 
37 };
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
The assert dialog return value is Abort (usually sent from a button labeled Abort).
assert_dialog_result
Specifies identifiers to indicate the return value of an assert dialog box.
Definition: assert_dialog_result.h:23
The assert dialog return value is Retry (usually sent from a button labeled Retry).
The assert dialog return value is Ignore (usually sent from a button labeled Ignore).
Provides the registration struct for enumerations.
Definition: enum_register.h:36