#ifndef ICU4XFixedDecimalSignDisplay_HPP #define ICU4XFixedDecimalSignDisplay_HPP #include #include #include #include #include #include #include #include "diplomat_runtime.hpp" #include "ICU4XFixedDecimalSignDisplay.h" /** * ECMA-402 compatible sign display preference. * * See the [Rust documentation for `SignDisplay`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.SignDisplay.html) for more information. */ enum struct ICU4XFixedDecimalSignDisplay { Auto = 0, Never = 1, Always = 2, ExceptZero = 3, Negative = 4, }; #endif