Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:10:09

0001 
0002 //  (C) Copyright Edward Diener 2011,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_TFUNCTION_HPP)
0008 #define BOOST_TTI_DETAIL_TFUNCTION_HPP
0009 
0010 #include <boost/mpl/push_front.hpp>
0011 #include <boost/function_types/function_type.hpp>
0012 
0013 namespace boost
0014   {
0015   namespace tti
0016     {
0017     namespace detail
0018       {
0019       template
0020         <
0021         class BOOST_TTI_DETAIL_TP_R,
0022         class BOOST_TTI_DETAIL_TP_FS,
0023         class BOOST_TTI_DETAIL_TP_TAG
0024         >
0025       struct tfunction_seq
0026         {
0027         typedef typename boost::mpl::push_front<BOOST_TTI_DETAIL_TP_FS,BOOST_TTI_DETAIL_TP_R>::type ftseq;
0028         typedef typename boost::function_types::function_type<ftseq,BOOST_TTI_DETAIL_TP_TAG>::type type;
0029         };
0030       }
0031     }
0032   }
0033   
0034 #endif // BOOST_TTI_DETAIL_TFUNCTION_HPP