Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:09

0001 // -- bind.hpp -- Boost Lambda Library --------------------------------------
0002 
0003 // Copyright (C) 1999-2001 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
0004 //                         Gary Powell (gwpowell@hotmail.com)
0005 //
0006 // Distributed under the Boost Software License, Version 1.0. (See
0007 // accompanying file LICENSE_1_0.txt or copy at
0008 // http://www.boost.org/LICENSE_1_0.txt)
0009 //
0010 // For more information, see http://www.boost.org 
0011 
0012 #ifndef BOOST_LAMBDA_BIND_HPP
0013 #define BOOST_LAMBDA_BIND_HPP
0014 
0015 #include "boost/lambda/core.hpp"
0016 
0017 // Required for std::is_assignable to work on the result of bind()
0018 #include "boost/lambda/detail/operator_actions.hpp"
0019 #include "boost/lambda/detail/operator_lambda_func_base.hpp"
0020 #include "boost/lambda/detail/operator_return_type_traits.hpp"
0021 
0022 #include "boost/lambda/detail/bind_functions.hpp"
0023 
0024 #endif