12345678910111213141516171819202122232425262728293031323334 |
- #if !defined(BOOST_TTI_DETAIL_TCLASS_HPP)
- #define BOOST_TTI_DETAIL_TCLASS_HPP
- #include <boost/mpl/eval_if.hpp>
- #include <boost/mpl/identity.hpp>
- #include <boost/type_traits/is_class.hpp>
- namespace boost
- {
- namespace tti
- {
- namespace detail
- {
- template <class BOOST_TTI_DETAIL_TP_T>
- struct tclass :
- boost::mpl::eval_if
- <
- boost::is_class<BOOST_TTI_DETAIL_TP_T>,
- BOOST_TTI_DETAIL_TP_T,
- boost::mpl::identity<BOOST_TTI_DETAIL_TP_T>
- >
- {
- };
- }
- }
- }
-
- #endif
|