Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:41:38

0001 
0002 #ifndef BOOST_MPL_ITER_APPLY_HPP_INCLUDED
0003 #define BOOST_MPL_ITER_APPLY_HPP_INCLUDED
0004 
0005 // Copyright Aleksey Gurtovoy 2002-2004
0006 //
0007 // Distributed under the Boost Software License, Version 1.0. 
0008 // (See accompanying file LICENSE_1_0.txt or copy at 
0009 // http://www.boost.org/LICENSE_1_0.txt)
0010 //
0011 // See http://www.boost.org/libs/mpl for documentation.
0012 
0013 // $Id$
0014 // $Date$
0015 // $Revision$
0016 
0017 #include <boost/mpl/apply.hpp>
0018 #include <boost/mpl/deref.hpp>
0019 
0020 namespace boost { namespace mpl { namespace aux {
0021 
0022 template<
0023       typename F
0024     , typename Iterator
0025     >
0026 struct iter_apply1
0027     : apply1< F,typename deref<Iterator>::type >
0028 {
0029 };
0030 
0031 template<
0032       typename F
0033     , typename Iterator1
0034     , typename Iterator2
0035     >
0036 struct iter_apply2
0037     : apply2<
0038           F
0039         , typename deref<Iterator1>::type
0040         , typename deref<Iterator2>::type
0041         >
0042 {
0043 };
0044 
0045 }}}
0046 
0047 #endif // BOOST_MPL_ITER_APPLY_HPP_INCLUDED