mirror of
https://github.com/boostorg/tti.git
synced 2026-01-25 18:52:17 +00:00
21 lines
802 B
C++
21 lines
802 B
C++
#if !defined(TEST_MF_HAS_STATIC_FUNCTION_HPP)
|
|
#define TEST_MF_HAS_STATIC_FUNCTION_HPP
|
|
|
|
#include "TestStructs.hpp"
|
|
#include <boost/tti/TTIntrospection.hpp>
|
|
|
|
TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(HaveTheSIntFunction,SIntFunction)
|
|
TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(TheTIntFunction,TIntFunction)
|
|
TTI_HAS_STATIC_MEMBER_FUNCTION(TSFunction)
|
|
TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(Pickedname,SomeStaticFunction)
|
|
|
|
TTI_MTFC_TRAIT_HAS_STATIC_MEMBER_FUNCTION(MFHaveTheSIntFunction,SIntFunction)
|
|
TTI_MTFC_TRAIT_HAS_STATIC_MEMBER_FUNCTION(MFCTheTIntFunction,TIntFunction)
|
|
TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION(TSFunction)
|
|
TTI_MTFC_TRAIT_HAS_STATIC_MEMBER_FUNCTION(MTFCPickedname,SomeStaticFunction)
|
|
|
|
TTI_MEMBER_TYPE(AStructType)
|
|
TTI_TRAIT_MEMBER_TYPE(NameIntType,AnIntType)
|
|
|
|
#endif // TEST_MF_HAS_STATIC_FUNCTION_HPP
|