File indexing completed on 2025-01-18 09:53:11
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_TT_IS_OBJECT_HPP_INCLUDED
0010 #define BOOST_TT_IS_OBJECT_HPP_INCLUDED
0011
0012 #include <boost/config.hpp>
0013 #include <boost/type_traits/is_reference.hpp>
0014 #include <boost/type_traits/is_void.hpp>
0015 #include <boost/type_traits/is_function.hpp>
0016
0017 namespace boost {
0018
0019 template <class T> struct is_object
0020 : public
0021 integral_constant<
0022 bool,
0023 ! ::boost::is_reference<T>::value && ! ::boost::is_void<T>::value && ! ::boost::is_function<T>::value >
0024 {};
0025
0026 }
0027
0028 #endif