blob: 2434652890b216d560831771f559003c51967e8e [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// -- lambda.hpp -- Boost Lambda Library -----------------------------------
2// Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
3//
4// Distributed under the Boost Software License, Version 1.0. (See
5// accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// For more information, see http://lambda.cs.utu.fi
9
Jeff Thompson3d613fd2013-10-15 15:39:04 -070010#ifndef NDNBOOST_LAMBDA_LAMBDA_HPP
11#define NDNBOOST_LAMBDA_LAMBDA_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070012
13
14#include "ndnboost/lambda/core.hpp"
15
Jeff Thompson3d613fd2013-10-15 15:39:04 -070016#ifdef NDNBOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017#include <istream>
18#include <ostream>
19#endif
20
21#include "ndnboost/lambda/detail/operator_actions.hpp"
22#include "ndnboost/lambda/detail/operator_lambda_func_base.hpp"
23#include "ndnboost/lambda/detail/operator_return_type_traits.hpp"
24
25
26#include "ndnboost/lambda/detail/operators.hpp"
27
Jeff Thompson3d613fd2013-10-15 15:39:04 -070028#ifndef NDNBOOST_LAMBDA_FAILS_IN_TEMPLATE_KEYWORD_AFTER_SCOPE_OPER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070029// sorry, member ptr does not work with gcc2.95
30#include "ndnboost/lambda/detail/member_ptr.hpp"
31#endif
32
33
34#endif