sl@0
|
1 |
// -- lambda.hpp -- Boost Lambda Library -----------------------------------
|
sl@0
|
2 |
// Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi)
|
sl@0
|
3 |
//
|
sl@0
|
4 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
5 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
6 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// For more information, see http://lambda.cs.utu.fi
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_LAMBDA_LAMBDA_HPP
|
sl@0
|
11 |
#define BOOST_LAMBDA_LAMBDA_HPP
|
sl@0
|
12 |
|
sl@0
|
13 |
|
sl@0
|
14 |
#include "boost/lambda/core.hpp"
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifdef BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
|
sl@0
|
17 |
#include <istream>
|
sl@0
|
18 |
#include <ostream>
|
sl@0
|
19 |
#endif
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "boost/lambda/detail/operator_actions.hpp"
|
sl@0
|
22 |
#include "boost/lambda/detail/operator_lambda_func_base.hpp"
|
sl@0
|
23 |
#include "boost/lambda/detail/operator_return_type_traits.hpp"
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "boost/lambda/detail/operators.hpp"
|
sl@0
|
27 |
|
sl@0
|
28 |
#ifndef BOOST_LAMBDA_FAILS_IN_TEMPLATE_KEYWORD_AFTER_SCOPE_OPER
|
sl@0
|
29 |
// sorry, member ptr does not work with gcc2.95
|
sl@0
|
30 |
#include "boost/lambda/detail/member_ptr.hpp"
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
#endif
|