ADTF  3.18.2
enums.h
Go to the documentation of this file.
1 
15 #ifndef A_UTIL_BASE_ENUMS_HEADER_INCLUDED
16 #define A_UTIL_BASE_ENUMS_HEADER_INCLUDED
17 
18 #include <cstdint>
19 
20 namespace a_util {
21 
23 enum class SortingOrder : std::int32_t {
24  ascending = 0x00,
25  descending = 0x01
26 };
27 
28 } // namespace a_util
29 
30 #endif // A_UTIL_BASE_ENUMS_HEADER_INCLUDED
Serves as the root component, with common functionality documented in core functionality.
Definition: base.h:24
SortingOrder
Flags for functions that need to sort elements.
Definition: enums.h:23
@ ascending
Sort in ascending order.
@ descending
Sort in descending order.