mirror of
https://github.com/boostorg/tti.git
synced 2026-01-26 07:02:14 +00:00
15 lines
467 B
C++
15 lines
467 B
C++
#if !defined(TEST_HAS_STATIC_MEMBER_HPP)
|
|
#define TEST_HAS_STATIC_MEMBER_HPP
|
|
|
|
#include "TestStructs.hpp"
|
|
#include <boost/tti/TTIntrospection.hpp>
|
|
|
|
TTI_HAS_STATIC_MEMBER(DSMember)
|
|
TTI_TRAIT_HAS_STATIC_MEMBER(HaveTheSIntFunction,SIntFunction)
|
|
TTI_TRAIT_HAS_STATIC_MEMBER(TheTIntFunction,TIntFunction)
|
|
TTI_HAS_STATIC_MEMBER(TSFunction)
|
|
TTI_HAS_STATIC_MEMBER(SomeStaticData)
|
|
TTI_TRAIT_HAS_STATIC_MEMBER(Pickedname,SomeStaticFunction)
|
|
|
|
#endif // TEST_HAS_STATIC_MEMBER_HPP
|