mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 06:42:25 +00:00
18 lines
449 B
C++
18 lines
449 B
C++
#if !defined(TEST_HAS_TYPE_HPP)
|
|
#define TEST_HAS_TYPE_HPP
|
|
|
|
#include "TestStructs.hpp"
|
|
#include <boost/tti/TTIntrospection.hpp>
|
|
|
|
TTI_HAS_TYPE(AnIntType)
|
|
TTI_TRAIT_HAS_TYPE(NameStruct,AStructType)
|
|
TTI_HAS_TYPE(AnIntTypeReference)
|
|
TTI_HAS_TYPE(BType)
|
|
TTI_TRAIT_HAS_TYPE(TheInteger,AnIntegerType)
|
|
TTI_HAS_TYPE(CType)
|
|
TTI_HAS_TYPE(AnotherIntegerType)
|
|
TTI_TRAIT_HAS_TYPE(SomethingElse,someOtherType)
|
|
TTI_HAS_TYPE(NoOtherType)
|
|
|
|
#endif // TEST_HAS_TYPE_HPP
|