2
0
mirror of https://github.com/boostorg/tti.git synced 2026-01-27 07:22:12 +00:00
Files
tti/test/TestMFHasMemberFunctionCompile.cpp
Edward Diener 793458e3ee Updated functionality and tests
[SVN r68669]
2011-02-06 16:29:00 +00:00

106 lines
3.2 KiB
C++

#include "TestMFHasMemberFunction.hpp"
#include <boost/mpl/assert.hpp>
int main()
{
using namespace boost::mpl::placeholders;
// You can always instantiate without compiler errors
tti::mf_has_member_function
<
tti::FunctionReturningInt<_,_>,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<short>
> aVar;
tti::mf_has_member_function
<
tti::has_member_function_sFunction<_,_,_>,
boost::mpl::identity<AnotherType>,
tti::member_type_AnIntType<AnotherType>,
boost::mpl::vector
<
boost::mpl::identity<int>,
boost::mpl::identity<long>,
boost::mpl::identity<double>
>
> aVar2;
tti::mf_has_member_function
<
tti::has_member_function_someFunctionMember<_,_,_>,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<short>,
boost::mpl::vector
<
boost::mpl::identity<double>,
boost::mpl::identity<int>,
boost::mpl::identity<long>
>
> aVar3;
// Compile time asserts
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::has_member_function_VoidFunction<_,_>,
boost::mpl::identity<AType>,
boost::mpl::identity<void>
>
));
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::FunctionReturningInt<_,_>,
boost::mpl::identity<AType>,
boost::mpl::identity<int>
>
));
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::FunctionReturningInt<_,_,_>,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<double>,
boost::mpl::vector<boost::mpl::identity<int> >
>
));
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::has_member_function_aFunction<_,_,_>,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<AType>,
boost::mpl::vector<boost::mpl::identity<int> >
>
));
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::AnotherIntFunction<_,_,_>,
boost::mpl::identity<AnotherType>,
boost::mpl::identity<int>,
boost::mpl::vector<boost::mpl::identity<AType> >
>
));
BOOST_MPL_ASSERT((tti::mf_has_member_function
<
tti::has_member_function_sFunction<_,_,_>,
boost::mpl::identity<AnotherType>,
tti::member_type_AnIntType<AType>,
boost::mpl::vector
<
boost::mpl::identity<int>,
boost::mpl::identity<long>,
boost::mpl::identity<double>
>
>
));
return 0;
}