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