Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:44:51

0001 // -- lambda.hpp -- Boost Lambda Library -----------------------------------
0002 // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See
0005 // accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt)
0007 //
0008 // For more information, see http://lambda.cs.utu.fi 
0009 
0010 #ifndef BOOST_LAMBDA_LAMBDA_HPP
0011 #define BOOST_LAMBDA_LAMBDA_HPP
0012 
0013 
0014 #include "boost/lambda/core.hpp"
0015 
0016 #ifdef BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
0017 #include <istream>
0018 #include <ostream>
0019 #endif
0020 
0021 #include "boost/lambda/detail/operator_actions.hpp"
0022 #include "boost/lambda/detail/operator_lambda_func_base.hpp"
0023 #include "boost/lambda/detail/operator_return_type_traits.hpp"
0024 
0025 
0026 #include "boost/lambda/detail/operators.hpp"
0027 #include "boost/lambda/detail/member_ptr.hpp"
0028 
0029 #endif