• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 //  (C) Copyright Edward Diener 2011
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_static_mem_fun.hpp"
8 #include <boost/mpl/assert.hpp>
9 
main()10 int main()
11   {
12 
13   // You can always instantiate without compiler errors
14 
15   TheTIntFunction<AType,void,boost::mpl::vector<long,double> > aVar;
16   Pickedname<AnotherType,AType,boost::mpl::vector<long,long> > aVar2;
17   TheTIntFunction<AnotherType,AType,boost::mpl::vector<long,double>,boost::function_types::cv_qualified> aVar3;
18 
19   // Compile time asserts
20 
21   BOOST_MPL_ASSERT((HaveTheSIntFunction<AType,int,boost::mpl::vector<long,double> >));
22   BOOST_MPL_ASSERT((TheTIntFunction<AnotherType,AType,boost::mpl::vector<long,double> >));
23   BOOST_MPL_ASSERT((BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN(TSFunction)<AnotherType,AType::AStructType,boost::mpl::vector<AType::AnIntType,double> >));
24 
25   return 0;
26 
27   }
28