parameters.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (c) 2009-2014 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. #ifndef BOOST_CONVERT_PARAMETERS_HPP
  5. #define BOOST_CONVERT_PARAMETERS_HPP
  6. #include <boost/convert/detail/boost_parameter_ext.hpp>
  7. namespace boost
  8. {
  9. namespace cnv
  10. {
  11. struct adjust { enum type { left, right, center };};
  12. struct base { enum type { bin =2, dec =10, hex =16, oct =8 };};
  13. struct notation { enum type { fixed, scientific };};
  14. namespace parameter
  15. {
  16. BOOST_PARAMETER_KEYWORD(type, adjust)
  17. BOOST_PARAMETER_KEYWORD(type, base)
  18. BOOST_PARAMETER_KEYWORD(type, fill)
  19. BOOST_PARAMETER_KEYWORD(type, locale)
  20. BOOST_PARAMETER_KEYWORD(type, notation)
  21. BOOST_PARAMETER_KEYWORD(type, precision)
  22. BOOST_PARAMETER_KEYWORD(type, skipws)
  23. BOOST_PARAMETER_KEYWORD(type, uppercase)
  24. BOOST_PARAMETER_KEYWORD(type, width)
  25. }
  26. }
  27. }
  28. #endif // BOOST_CONVERT_PARAMETERS_HPP