1 2 // (C) Copyright Edward Diener 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(TEST_HAS_CLASS_HPP) 8 #define TEST_HAS_CLASS_HPP 9 10 #include "test_structs.hpp" 11 #include <boost/tti/has_class.hpp> 12 13 BOOST_TTI_HAS_CLASS(AnIntType) 14 BOOST_TTI_TRAIT_HAS_CLASS(NameStruct,AStructType) 15 BOOST_TTI_HAS_CLASS(AnIntTypeReference) 16 BOOST_TTI_HAS_CLASS(BType) 17 BOOST_TTI_TRAIT_HAS_CLASS(TheInteger,AnIntegerType) 18 BOOST_TTI_HAS_CLASS(CType) 19 BOOST_TTI_HAS_CLASS(AnotherIntegerType) 20 BOOST_TTI_TRAIT_HAS_CLASS(SomethingElse,someOtherType) 21 BOOST_TTI_HAS_CLASS(NoOtherType) 22 23 BOOST_TTI_TRAIT_HAS_CLASS(EInB,BTypeEnum) 24 BOOST_TTI_HAS_CLASS(AnEnumTtype) 25 BOOST_TTI_TRAIT_HAS_CLASS(AnotherE,AnotherEnumTtype) 26 BOOST_TTI_TRAIT_HAS_CLASS(EClass,AnEnumClassType) 27 BOOST_TTI_HAS_CLASS(AnotherEnumClassType) 28 BOOST_TTI_HAS_CLASS(CTypeUnion) 29 BOOST_TTI_TRAIT_HAS_CLASS(SimpleUT,AnUnion) 30 BOOST_TTI_HAS_CLASS(AnotherUnion) 31 32 BOOST_TTI_TRAIT_HAS_CLASS(UnionType,UNStruct) 33 34 #endif // TEST_HAS_CLASS_HPP 35