File indexing completed on 2025-12-16 10:10:13
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_TYPE_ERASURE_DETAIL_IS_PLACEHOLDER_HPP_INCLUDED
0012 #define BOOST_TYPE_ERASURE_DETAIL_IS_PLACEHOLDER_HPP_INCLUDED
0013
0014 #include <boost/mpl/bool.hpp>
0015
0016 namespace boost {
0017
0018 namespace type_erasure {
0019
0020 #ifdef BOOST_TYPE_ERASURE_DOXYGEN
0021
0022
0023 template<class T>
0024 struct is_placeholder {};
0025
0026 #else
0027
0028 template<class T, class Enable = void>
0029 struct is_placeholder : ::boost::mpl::false_ {};
0030
0031 template<class T>
0032 struct is_placeholder<T, typename T::_boost_type_erasure_is_placeholder> :
0033 ::boost::mpl::true_ {};
0034
0035 #endif
0036
0037 }
0038 }
0039
0040 #endif