File indexing completed on 2025-01-18 09:52:54
0001
0002
0003
0004
0005
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