2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-25 06:42:25 +00:00
Files
tti/test/TestMFHasMemberFunction.hpp
Edward Diener c88ecb20fb Added support for metafunction classes
[SVN r68720]
2011-02-08 16:13:22 +00:00

24 lines
826 B
C++

#if !defined(TEST_MF_HAS_MEMBER_FUNCTION_HPP)
#define TEST_MF_HAS_MEMBER_FUNCTION_HPP
#include "TestStructs.hpp"
#include <boost/tti/TTIntrospection.hpp>
TTI_HAS_MEMBER_FUNCTION(VoidFunction)
TTI_TRAIT_HAS_MEMBER_FUNCTION(FunctionReturningInt,IntFunction)
TTI_HAS_MEMBER_FUNCTION(aFunction)
TTI_TRAIT_HAS_MEMBER_FUNCTION(AnotherIntFunction,anotherFunction)
TTI_HAS_MEMBER_FUNCTION(sFunction)
TTI_HAS_MEMBER_FUNCTION(someFunctionMember)
TTI_MTFC_HAS_MEMBER_FUNCTION(VoidFunction)
TTI_MTFC_TRAIT_HAS_MEMBER_FUNCTION(MFFunctionReturningInt,IntFunction)
TTI_MTFC_HAS_MEMBER_FUNCTION(aFunction)
TTI_MTFC_TRAIT_HAS_MEMBER_FUNCTION(MFAnotherIntFunction,anotherFunction)
TTI_MTFC_HAS_MEMBER_FUNCTION(sFunction)
TTI_MTFC_HAS_MEMBER_FUNCTION(someFunctionMember)
TTI_MEMBER_TYPE(AnIntType)
#endif // TEST_MF_HAS_MEMBER_FUNCTION_HPP