bind.hpp 817 B

123456789101112131415161718192021222324
  1. // -- bind.hpp -- Boost Lambda Library --------------------------------------
  2. // Copyright (C) 1999-2001 Jaakko Jarvi ([email protected])
  3. // Gary Powell ([email protected])
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // For more information, see http://www.boost.org
  10. #ifndef BOOST_LAMBDA_BIND_HPP
  11. #define BOOST_LAMBDA_BIND_HPP
  12. #include "boost/lambda/core.hpp"
  13. // Required for std::is_assignable to work on the result of bind()
  14. #include "boost/lambda/detail/operator_actions.hpp"
  15. #include "boost/lambda/detail/operator_lambda_func_base.hpp"
  16. #include "boost/lambda/detail/operator_return_type_traits.hpp"
  17. #include "boost/lambda/detail/bind_functions.hpp"
  18. #endif