Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:48:04

0001 
0002 #ifndef BOOST_MPL_LAMBDA_FWD_HPP_INCLUDED
0003 #define BOOST_MPL_LAMBDA_FWD_HPP_INCLUDED
0004 
0005 // Copyright Aleksey Gurtovoy 2001-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/void_fwd.hpp>
0018 #include <boost/mpl/aux_/na.hpp>
0019 #include <boost/mpl/aux_/config/lambda.hpp>
0020 
0021 #if !defined(BOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT)
0022 
0023 #   include <boost/mpl/int.hpp>
0024 #   include <boost/mpl/aux_/lambda_arity_param.hpp>
0025 #   include <boost/mpl/aux_/template_arity_fwd.hpp>
0026 
0027 namespace boost { namespace mpl {
0028 
0029 template< 
0030       typename T = na
0031     , typename Tag = void_
0032     BOOST_MPL_AUX_LAMBDA_ARITY_PARAM(
0033           typename Arity = int_< aux::template_arity<T>::value >
0034         )
0035     >
0036 struct lambda;
0037 
0038 }}
0039 
0040 #else // BOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT
0041 
0042 #   include <boost/mpl/bool.hpp>
0043 
0044 namespace boost { namespace mpl {
0045 
0046 template< 
0047       typename T = na
0048     , typename Tag = void_
0049     , typename Protect = true_
0050     > 
0051 struct lambda;
0052 
0053 }}
0054 
0055 #endif
0056 
0057 #endif // BOOST_MPL_LAMBDA_FWD_HPP_INCLUDED