Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Options/TxtFloatFormat.hpp
4 : : \copyright 2012-2015 J. Bakosi,
5 : : 2016-2018 Los Alamos National Security, LLC.,
6 : : 2019-2021 Triad National Security, LLC.
7 : : All rights reserved. See the LICENSE file for details.
8 : : \brief Text floating-point output options
9 : : \details Text floating-point output options
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef TxtFloatFormatOptions_h
13 : : #define TxtFloatFormatOptions_h
14 : :
15 : : #include <brigand/sequences/list.hpp>
16 : :
17 : : #include "Toggle.hpp"
18 : : #include "Keywords.hpp"
19 : : #include "PUPUtil.hpp"
20 : :
21 : : namespace tk {
22 : : namespace ctr {
23 : :
24 : : //! Txt floating-point format types
25 : : enum class TxtFloatFormatType : uint8_t { DEFAULT=0,
26 : : FIXED,
27 : : SCIENTIFIC };
28 : :
29 : : //! \brief Pack/Unpack TxtFloatFormatType: forward overload to generic enum
30 : : //! class packer
31 : 1496 : inline void operator|( PUP::er& p, TxtFloatFormatType& e ) { PUP::pup( p, e ); }
32 : :
33 : : //! \brief TxtFloatFormat options: outsource searches to base templated on enum
34 : : //! type
35 : : class TxtFloatFormat : public tk::Toggle< TxtFloatFormatType > {
36 : :
37 : : public:
38 : : //! Valid expected choices to make them also available at compile-time
39 : : using keywords = brigand::list< kw::txt_float_default
40 : : , kw::txt_float_fixed
41 : : , kw::txt_float_scientific
42 : : >;
43 : :
44 : : //! \brief Options constructor
45 : : //! \details Simply initialize in-line and pass associations to base, which
46 : : //! will handle client interactions
47 : 127 : explicit TxtFloatFormat() :
48 : : tk::Toggle< TxtFloatFormatType >(
49 : : //! Group, i.e., options, name
50 : : "floating-point format",
51 : : //! Enums -> names
52 [ + - ]: 127 : { { TxtFloatFormatType::DEFAULT, kw::txt_float_default::name() },
53 [ + - ]: 254 : { TxtFloatFormatType::FIXED, kw::txt_float_fixed::name() },
54 [ + - ]: 254 : { TxtFloatFormatType::SCIENTIFIC, kw::txt_float_scientific::name() } },
55 : : //! keywords -> Enums
56 : 0 : { { kw::txt_float_default::string(), TxtFloatFormatType::DEFAULT },
57 [ + - ]: 254 : { kw::txt_float_fixed::string(), TxtFloatFormatType::FIXED },
58 [ + - ]: 254 : { kw::txt_float_scientific::string(), TxtFloatFormatType::SCIENTIFIC } }
59 [ + - ][ + - ]: 1778 : ) {}
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
60 : : };
61 : :
62 : : } // ctr::
63 : : } // tk:::
64 : :
65 : : #endif // TxtFloatFormatOptions_h
|