1 // © Copyright Fernando Luis Cacciola Carballal 2000-2004
2 // Use, modification, and distribution is subject to the Boost Software
3 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
6 // See library home page at http://www.boost.org/libs/numeric/conversion
8 // Contact the author at: fernando_cacciola@hotmail.com
10 #ifndef BOOST_NUMERIC_CONVERSION_CONVERTER_FLC_12NOV2002_HPP
11 #define BOOST_NUMERIC_CONVERSION_CONVERTER_FLC_12NOV2002_HPP
13 #include "boost/numeric/conversion/conversion_traits.hpp"
14 #include "boost/numeric/conversion/converter_policies.hpp"
16 #include "boost/numeric/conversion/detail/converter.hpp"
18 namespace boost { namespace numeric
23 class Traits = conversion_traits<T,S>,
24 class OverflowHandler = def_overflow_handler,
25 class Float2IntRounder = Trunc< BOOST_DEDUCED_TYPENAME Traits::source_type> ,
26 class RawConverter = raw_converter<Traits>,
27 class UserRangeChecker = UseInternalRangeChecker
29 struct converter : convdetail::get_converter_impl<Traits,
36 typedef Traits traits ;
38 typedef typename Traits::argument_type argument_type ;
39 typedef typename Traits::result_type result_type ;
41 result_type operator() ( argument_type s ) const { return this->convert(s) ; }
47 class OverflowHandler = def_overflow_handler,
48 class Float2IntRounder = Trunc<S> ,
49 class UserRangeChecker = UseInternalRangeChecker
51 struct make_converter_from
54 class Traits = conversion_traits<T,S>,
55 class RawConverter = raw_converter<Traits>
59 typedef converter<T,S,Traits,OverflowHandler,Float2IntRounder,RawConverter,UserRangeChecker> type ;
64 } } // namespace boost::numeric