Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:47

0001 //  (c) Copyright Fernando Luis Cacciola Carballal 2000-2004
0002 //  Use, modification, and distribution is subject to the Boost Software
0003 //  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 //  See library home page at http://www.boost.org/libs/numeric/conversion
0007 //
0008 // Contact the author at: fernando_cacciola@hotmail.com
0009 // 
0010 #ifndef BOOST_NUMERIC_CONVERSION_CONVERSION_TRAITS_FLC_12NOV2002_HPP
0011 #define BOOST_NUMERIC_CONVERSION_CONVERSION_TRAITS_FLC_12NOV2002_HPP
0012 
0013 #include "boost/numeric/conversion/detail/conversion_traits.hpp"
0014 #include "boost/detail/workaround.hpp"
0015 #include "boost/config.hpp"
0016 
0017 namespace boost { namespace numeric
0018 {
0019 
0020 template<class T, class S>
0021 struct conversion_traits 
0022     : convdetail::get_conversion_traits<T,S>::type 
0023 {
0024 } ;
0025 
0026 } } // namespace boost::numeric
0027 
0028 #endif
0029 //
0030 ///////////////////////////////////////////////////////////////////////////////////////////////
0031 
0032