1 |
1 // -- lambda.hpp -- Boost Lambda Library ----------------------------------- |
2 #ifndef BOOST_MPL_LAMBDA_HPP_INCLUDED |
2 // Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi) |
3 #define BOOST_MPL_LAMBDA_HPP_INCLUDED |
|
4 |
|
5 // Copyright Aleksey Gurtovoy 2001-2004 |
|
6 // |
3 // |
7 // Distributed under the Boost Software License, Version 1.0. |
4 // Distributed under the Boost Software License, Version 1.0. (See |
8 // (See accompanying file LICENSE_1_0.txt or copy at |
5 // accompanying file LICENSE_1_0.txt or copy at |
9 // http://www.boost.org/LICENSE_1_0.txt) |
6 // http://www.boost.org/LICENSE_1_0.txt) |
10 // |
7 // |
11 // See http://www.boost.org/libs/mpl for documentation. |
8 // For more information, see http://lambda.cs.utu.fi |
12 |
9 |
13 // $Source: /cvsroot/boost/boost/boost/mpl/lambda.hpp,v $ |
10 #ifndef BOOST_LAMBDA_LAMBDA_HPP |
14 // $Date: 2004/09/02 15:40:41 $ |
11 #define BOOST_LAMBDA_LAMBDA_HPP |
15 // $Revision: 1.5 $ |
|
16 |
12 |
17 #include <boost/mpl/lambda_fwd.hpp> |
|
18 #include <boost/mpl/bind.hpp> |
|
19 #include <boost/mpl/aux_/config/lambda.hpp> |
|
20 |
13 |
21 #if !defined(BOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT) |
14 #include "boost/lambda/core.hpp" |
22 # include <boost/mpl/aux_/full_lambda.hpp> |
15 |
23 #else |
16 #ifdef BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS |
24 # include <boost/mpl/aux_/lambda_no_ctps.hpp> |
17 #include <istream> |
25 # include <boost/mpl/aux_/lambda_support.hpp> |
18 #include <ostream> |
26 # define BOOST_MPL_CFG_NO_IMPLICIT_METAFUNCTIONS |
|
27 #endif |
19 #endif |
28 |
20 |
29 #endif // BOOST_MPL_LAMBDA_HPP_INCLUDED |
21 #include "boost/lambda/detail/operator_actions.hpp" |
|
22 #include "boost/lambda/detail/operator_lambda_func_base.hpp" |
|
23 #include "boost/lambda/detail/operator_return_type_traits.hpp" |
|
24 |
|
25 |
|
26 #include "boost/lambda/detail/operators.hpp" |
|
27 |
|
28 #ifndef BOOST_LAMBDA_FAILS_IN_TEMPLATE_KEYWORD_AFTER_SCOPE_OPER |
|
29 // sorry, member ptr does not work with gcc2.95 |
|
30 #include "boost/lambda/detail/member_ptr.hpp" |
|
31 #endif |
|
32 |
|
33 |
|
34 #endif |