Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Options/PDFCentering.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 PDF output file centering type options
9 : : \details PDF output file centering type options
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef PDFCenteringOptions_h
13 : : #define PDFCenteringOptions_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 : : //! PDF output file types
25 : : enum class PDFCenteringType : uint8_t { ELEM=0,
26 : : NODE };
27 : :
28 : : //! \brief Pack/Unpack PDFCenteringType: forward overload to generic enum class
29 : : //! packer
30 : 748 : inline void operator|( PUP::er& p, PDFCenteringType& e ) { PUP::pup( p, e ); }
31 : :
32 : : //! \brief PDFCentering options: outsource searches to base templated on enum
33 : : //! type
34 : : class PDFCentering : public tk::Toggle< PDFCenteringType > {
35 : :
36 : : public:
37 : : //! Valid expected choices to make them also available at compile-time
38 : : using keywords = brigand::list< kw::elem
39 : : , kw::node
40 : : >;
41 : :
42 : : //! \brief Options constructor
43 : : //! \details Simply initialize in-line and pass associations to base, which
44 : : //! will handle client interactions
45 : 32 : explicit PDFCentering() :
46 : : tk::Toggle< PDFCenteringType >(
47 : : //! Group, i.e., options, name
48 : : "PDF output file centering",
49 : : //! Enums -> names
50 [ + - ]: 32 : { { PDFCenteringType::ELEM, kw::elem::name() },
51 [ + - ]: 64 : { PDFCenteringType::NODE, kw::node::name() } },
52 : : //! keywords -> Enums
53 : 0 : { { kw::elem::string(), PDFCenteringType::ELEM },
54 [ + - ][ + - ]: 256 : { kw::node::string(), PDFCenteringType::NODE } } ) {}
[ + - ][ + - ]
[ + - ][ + + ]
[ + + ][ - - ]
[ - - ]
55 : : };
56 : :
57 : : } // ctr::
58 : : } // tk:::
59 : :
60 : : #endif // PDFCenteringOptions_h
|