test_mem_type.hpp 768 B

123456789101112131415161718192021222324
  1. // (C) Copyright Edward Diener 2011
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. #if !defined(TEST_MEMBER_TYPE_HPP)
  6. #define TEST_MEMBER_TYPE_HPP
  7. #include "test_structs.hpp"
  8. #include <boost/tti/member_type.hpp>
  9. BOOST_TTI_MEMBER_TYPE(AnIntType)
  10. BOOST_TTI_TRAIT_MEMBER_TYPE(NameStruct,AStructType)
  11. BOOST_TTI_MEMBER_TYPE(AnIntTypeReference)
  12. BOOST_TTI_MEMBER_TYPE(BType)
  13. BOOST_TTI_TRAIT_MEMBER_TYPE(TheInteger,AnIntegerType)
  14. BOOST_TTI_MEMBER_TYPE(CType)
  15. BOOST_TTI_MEMBER_TYPE(AnotherIntegerType)
  16. BOOST_TTI_TRAIT_MEMBER_TYPE(SomethingElse,someOtherType)
  17. BOOST_TTI_MEMBER_TYPE(NoExistType)
  18. #endif // TEST_MEMBER_TYPE_HPP