#ifndef icu4x_CollatorNumeric_D_HPP #define icu4x_CollatorNumeric_D_HPP #include #include #include #include #include #include #include "../diplomat_runtime.hpp" namespace icu4x { namespace capi { enum CollatorNumeric { CollatorNumeric_Off = 0, CollatorNumeric_On = 1, }; typedef struct CollatorNumeric_option {union { CollatorNumeric ok; }; bool is_ok; } CollatorNumeric_option; } // namespace capi } // namespace namespace icu4x { class CollatorNumeric { public: enum Value { Off = 0, On = 1, }; CollatorNumeric() = default; // Implicit conversions between enum and ::Value constexpr CollatorNumeric(Value v) : value(v) {} constexpr operator Value() const { return value; } // Prevent usage as boolean value explicit operator bool() const = delete; inline icu4x::capi::CollatorNumeric AsFFI() const; inline static icu4x::CollatorNumeric FromFFI(icu4x::capi::CollatorNumeric c_enum); private: Value value; }; } // namespace #endif // icu4x_CollatorNumeric_D_HPP