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 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_PTMF_HPP)
0008 #define BOOST_TTI_DETAIL_PTMF_HPP
0009 
0010 #include <boost/mpl/push_front.hpp>
0011 #include <boost/function_types/member_function_pointer.hpp>
0012 
0013 namespace boost
0014   {
0015   namespace tti
0016     {
0017     namespace detail
0018       {
0019       template
0020         <
0021         class BOOST_TTI_DETAIL_TP_T,
0022         class BOOST_TTI_DETAIL_TP_R,
0023         class BOOST_TTI_DETAIL_TP_FS,
0024         class BOOST_TTI_DETAIL_TP_TAG
0025         >
0026       struct ptmf_seq
0027         {
0028         typedef typename
0029         boost::function_types::member_function_pointer
0030           <
0031           typename
0032           boost::mpl::push_front
0033             <
0034             typename
0035             boost::mpl::push_front<BOOST_TTI_DETAIL_TP_FS,BOOST_TTI_DETAIL_TP_T>::type,
0036             BOOST_TTI_DETAIL_TP_R
0037             >::type,
0038           BOOST_TTI_DETAIL_TP_TAG
0039           >::type type;
0040         };
0041       }
0042     }
0043   }
0044   
0045 #endif // BOOST_TTI_DETAIL_PTMF_HPP