1 2 // (C) Copyright Edward Diener 2011,2012,2019 3 // Use, modification and distribution are subject to the Boost Software License, 4 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 // http://www.boost.org/LICENSE_1_0.txt). 6 7 #if !defined(BOOST_TTI_INTROSPECTION_HPP) 8 #define BOOST_TTI_INTROSPECTION_HPP 9 10 #include "has_class.hpp" 11 #include "has_data.hpp" 12 #include "has_enum.hpp" 13 #include "has_function.hpp" 14 #include "has_function_template.hpp" 15 #include "has_member_data.hpp" 16 #include "has_member_function.hpp" 17 #include "has_member_function_template.hpp" 18 #include "has_static_member_data.hpp" 19 #include "has_static_member_function.hpp" 20 #include "has_static_member_function_template.hpp" 21 #include "has_template.hpp" 22 #include "has_type.hpp" 23 #include "has_union.hpp" 24 #include "member_type.hpp" 25 26 #endif // BOOST_TTI_INTROSPECTION_HPP 27