Chris@16: // (c) Copyright Fernando Luis Cacciola Carballal 2000-2004 Chris@16: // Use, modification, and distribution is subject to the Boost Software Chris@16: // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See library home page at http://www.boost.org/libs/numeric/conversion Chris@16: // Chris@16: // Contact the author at: fernando_cacciola@hotmail.com Chris@16: // Chris@16: #ifndef BOOST_NUMERIC_CONVERSION_CONVERSION_TRAITS_FLC_12NOV2002_HPP Chris@16: #define BOOST_NUMERIC_CONVERSION_CONVERSION_TRAITS_FLC_12NOV2002_HPP Chris@16: Chris@16: #include "boost/numeric/conversion/detail/conversion_traits.hpp" Chris@16: #include "boost/detail/workaround.hpp" Chris@16: #include "boost/config.hpp" Chris@16: Chris@16: namespace boost { namespace numeric Chris@16: { Chris@16: Chris@16: template Chris@16: struct conversion_traits Chris@16: : convdetail::get_conversion_traits::type Chris@16: { Chris@16: #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) Chris@16: typedef typename convdetail::get_conversion_traits::type base_; Chris@16: typedef typename base_::target_type target_type; Chris@16: typedef typename base_::source_type source_type; Chris@16: typedef typename base_::result_type result_type; Chris@16: typedef typename base_::argument_type argument_type; Chris@16: #endif Chris@16: } ; Chris@16: Chris@16: } } // namespace boost::numeric Chris@16: Chris@16: #endif Chris@16: // Chris@16: /////////////////////////////////////////////////////////////////////////////////////////////// Chris@16: Chris@16: