//----------------------------------------------------------------------------- // boost mpl/test/bind.cpp source file // See http://www.boost.org for updates, documentation, and revision history. //----------------------------------------------------------------------------- // // Copyright (c) 2001-02 // Peter Dimov, Aleksey Gurtovoy // // Permission to use, copy, modify, distribute and sell this software // and its documentation for any purpose is hereby granted without fee, // provided that the above copyright notice appears in all copies and // that both the copyright notice and this permission notice appear in // supporting documentation. No representations are made about the // suitability of this software for any purpose. It is provided "as is" // without express or implied warranty. #include "boost/mpl/bind.hpp" #include "boost/mpl/apply.hpp" #include "boost/mpl/assert_is_same.hpp" #include "boost/type_traits/is_same.hpp" namespace mpl = boost::mpl; namespace { struct f1 { template< typename T1 > struct apply { typedef T1 type; }; }; struct f5 { template< typename T1, typename T2, typename T3, typename T4, typename T5 > struct apply { typedef T5 type; }; }; } // namespace int main() { using namespace mpl::placeholders; typedef mpl::apply1< mpl::bind1,int >::type r11; typedef mpl::apply5< mpl::bind1,void,void,void,void,int >::type r12; BOOST_MPL_ASSERT_IS_SAME(r11,int); BOOST_MPL_ASSERT_IS_SAME(r12,int); typedef mpl::apply5< mpl::bind5,void,void,void,void,int >::type r51; typedef mpl::apply5< mpl::bind5,int,void,void,void,void >::type r52; BOOST_MPL_ASSERT_IS_SAME(r51,int); BOOST_MPL_ASSERT_IS_SAME(r52,int); return 0; }