File indexing completed on 2025-01-18 09:52:54
0001
0002
0003
0004
0005
0006
0007 #if !defined(BOOST_TTI_DETAIL_METAFUNC_HPP)
0008 #define BOOST_TTI_DETAIL_METAFUNC_HPP
0009
0010 #include <boost/mpl/has_xxx.hpp>
0011 #include <boost/tti/gen/namespace_gen.hpp>
0012
0013 namespace boost
0014 {
0015 namespace tti
0016 {
0017 namespace detail
0018 {
0019 BOOST_MPL_HAS_XXX_TEMPLATE_NAMED_DEF(is_metafunction_class_apply, apply, false)
0020 template <class BOOST_TTI_DETAIL_TP_T>
0021 struct is_metafunction_class :
0022 BOOST_TTI_NAMESPACE::detail::is_metafunction_class_apply<BOOST_TTI_DETAIL_TP_T>
0023 {
0024 };
0025 }
0026 }
0027 }
0028
0029 #endif