lambda.hpp 843 B

1234567891011121314151617181920212223242526272829
  1. // -- 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. #ifndef BOOST_LAMBDA_LAMBDA_HPP
  10. #define BOOST_LAMBDA_LAMBDA_HPP
  11. #include "boost/lambda/core.hpp"
  12. #ifdef BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
  13. #include <istream>
  14. #include <ostream>
  15. #endif
  16. #include "boost/lambda/detail/operator_actions.hpp"
  17. #include "boost/lambda/detail/operator_lambda_func_base.hpp"
  18. #include "boost/lambda/detail/operator_return_type_traits.hpp"
  19. #include "boost/lambda/detail/operators.hpp"
  20. #include "boost/lambda/detail/member_ptr.hpp"
  21. #endif