File indexing completed on 2025-01-18 09:52:54
0001
0002
0003
0004
0005
0006
0007 #if !defined(BOOST_TTI_DETAIL_TCLASS_HPP)
0008 #define BOOST_TTI_DETAIL_TCLASS_HPP
0009
0010 #include <boost/mpl/eval_if.hpp>
0011 #include <boost/mpl/identity.hpp>
0012 #include <boost/type_traits/is_class.hpp>
0013
0014 namespace boost
0015 {
0016 namespace tti
0017 {
0018 namespace detail
0019 {
0020 template <class BOOST_TTI_DETAIL_TP_T>
0021 struct tclass :
0022 boost::mpl::eval_if
0023 <
0024 boost::is_class<BOOST_TTI_DETAIL_TP_T>,
0025 BOOST_TTI_DETAIL_TP_T,
0026 boost::mpl::identity<BOOST_TTI_DETAIL_TP_T>
0027 >
0028 {
0029 };
0030 }
0031 }
0032 }
0033
0034 #endif