]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/convert/parameters.hpp
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / boost / boost / convert / parameters.hpp
1 // Copyright (c) 2009-2020 Vladimir Batov.
2 // Use, modification and distribution are subject to the Boost Software License,
3 // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
4
5 #ifndef BOOST_CONVERT_PARAMETERS_HPP
6 #define BOOST_CONVERT_PARAMETERS_HPP
7
8 #include <boost/parameter/name.hpp>
9 #include <boost/parameter/is_argument_pack.hpp>
10 #include <boost/mpl/has_key.hpp>
11
12 namespace boost { namespace cnv
13 {
14 enum class adjust { left, right, center };
15 enum class base { bin =2, oct =8, dec =10, hex =16 };
16 enum class notation { fixed, scientific };
17
18 namespace parameter
19 {
20 BOOST_PARAMETER_NAME(( adjust, type) adjust)
21 BOOST_PARAMETER_NAME(( base, type) base)
22 BOOST_PARAMETER_NAME(( fill, type) fill)
23 BOOST_PARAMETER_NAME(( locale, type) locale)
24 BOOST_PARAMETER_NAME(( notation, type) notation)
25 BOOST_PARAMETER_NAME((precision, type) precision)
26 BOOST_PARAMETER_NAME(( skipws, type) skipws)
27 BOOST_PARAMETER_NAME((uppercase, type) uppercase)
28 BOOST_PARAMETER_NAME((lowercase, type) lowercase)
29 BOOST_PARAMETER_NAME(( width, type) width)
30 }
31 }}
32
33 #endif // BOOST_CONVERT_PARAMETERS_HPP