• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 //  (C) Copyright Edward Diener 2019
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6 
7 #include "test_has_fun_template.hpp"
8 #include <boost/detail/lightweight_test.hpp>
9 
main()10 int main()
11   {
12 
13   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(StatFuncTemplate)<AType::AStructType,int,boost::mpl::vector<int *,bool> >::value));
14   BOOST_TEST((Sftem<AType::BType::CType,double,boost::mpl::vector<char,unsigned *,float &> >::value));
15   BOOST_TEST((AnFT<AType,int,boost::mpl::vector<const unsigned &> >::value));
16   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(AFuncTemplate)<AType,void,boost::mpl::vector<double *,unsigned char,int &> >::value));
17   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(FTHasDef)<AType,double,boost::mpl::vector<int, long, char> >::value));
18   BOOST_TEST((ACFunTem<AType,double,boost::mpl::vector<unsigned,int>,boost::function_types::const_qualified>::value));
19   BOOST_TEST((WConstFT<AType,void,boost::mpl::vector<int **, long &, unsigned long>,boost::function_types::const_qualified>::value));
20   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(AVolatileFT)<AType,double,boost::mpl::vector<int, long, char>,boost::function_types::volatile_qualified>::value));
21   BOOST_TEST((VTempl<AType,void,boost::mpl::vector<int &>,boost::function_types::volatile_qualified>::value));
22   BOOST_TEST((ACVF<AType,double,boost::mpl::vector<int,long>,boost::function_types::cv_qualified>::value));
23   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(ConstVolTTFun)<AType,void,boost::mpl::vector<float,double>,boost::function_types::cv_qualified>::value));
24   BOOST_TEST((AnotherFT<AType,void,boost::mpl::vector<int,long &,const bool &> >::value));
25 
26   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(MyFuncTemplate)<AnotherType,long,boost::mpl::vector<unsigned char &> >::value));
27   BOOST_TEST((VWDef<AnotherType,void,boost::mpl::vector<float,double>,boost::function_types::volatile_qualified>::value));
28   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(YetAnotherFuncTemplate)<AnotherType,void,boost::mpl::vector<const int &,unsigned char &> >::value));
29   BOOST_TEST((BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(StaticFTWithDefault)<AnotherType,void,boost::mpl::vector<const long &,int &,long *,long> >::value));
30 
31   return boost::report_errors();
32 
33   }
34