Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:52:54

0001 
0002 //  (C) Copyright Edward Diener 2012,2013
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 
0007 #if !defined(BOOST_TTI_DETAIL_FTCLASS_HPP)
0008 #define BOOST_TTI_DETAIL_FTCLASS_HPP
0009 
0010 #include <boost/function_types/parameter_types.hpp>
0011 #include <boost/mpl/at.hpp>
0012 #include <boost/mpl/identity.hpp>
0013 #include <boost/mpl/int.hpp>
0014 #include <boost/mpl/quote.hpp>
0015 
0016 namespace boost
0017   {
0018   namespace tti
0019     {
0020     namespace detail
0021       {
0022       template<class BOOST_TTI_DETAIL_TP_F>
0023       struct class_type :
0024           boost::mpl::at
0025             <
0026             typename
0027             boost::function_types::parameter_types
0028               <
0029               BOOST_TTI_DETAIL_TP_F,
0030               boost::mpl::quote1
0031                 <
0032                 boost::mpl::identity
0033                 >
0034               >::type,
0035               boost::mpl::int_<0>
0036             >
0037         {
0038         };
0039       }
0040     }
0041   }
0042   
0043 #endif // BOOST_TTI_DETAIL_FTCLASS_HPP