bind_function.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*=============================================================================
  2. Copyright (c) 2001-2007 Joel de Guzman
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #if !BOOST_PHOENIX_IS_ITERATING
  7. #ifndef PHOENIX_BIND_BIND_FUNCTION_HPP
  8. #define PHOENIX_BIND_BIND_FUNCTION_HPP
  9. #include <boost/phoenix/core/expression.hpp>
  10. #include <boost/phoenix/core/detail/function_eval.hpp>
  11. #include <boost/phoenix/bind/detail/function_ptr.hpp>
  12. namespace boost { namespace phoenix {
  13. template <
  14. typename RT
  15. >
  16. inline
  17. typename detail::expression::function_eval<
  18. detail::function_ptr<0, RT, RT(*)()>
  19. >::type const
  20. bind(RT(*f)())
  21. {
  22. typedef detail::function_ptr<0, RT, RT(*)()> fp_type;
  23. return detail::expression::function_eval<fp_type>::make(fp_type(f));
  24. }
  25. template <
  26. typename RT
  27. , typename T0
  28. , typename A0
  29. >
  30. inline
  31. typename detail::expression::function_eval<
  32. detail::function_ptr<1, RT, RT(*)(T0)>
  33. , A0
  34. >::type const
  35. bind(RT(*f)(T0), A0 const & a0)
  36. {
  37. typedef detail::function_ptr<1, RT, RT(*)(T0)> fp_type;
  38. return detail::expression::function_eval<fp_type, A0>::make(fp_type(f), a0);
  39. }
  40. #if !defined(BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES)
  41. #include <boost/phoenix/bind/preprocessed/bind_function.hpp>
  42. #else
  43. #if defined(__WAVE__) && defined (BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  44. #pragma wave option(preserve: 2, line: 0, output: "preprocessed/bind_function_" BOOST_PHOENIX_LIMIT_STR ".hpp")
  45. #endif
  46. /*=============================================================================
  47. Copyright (c) 2001-2007 Joel de Guzman
  48. Distributed under the Boost Software License, Version 1.0. (See accompanying
  49. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  50. ==============================================================================*/
  51. #if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  52. #pragma wave option(preserve: 1)
  53. #endif
  54. #define BOOST_PHOENIX_ITERATION_PARAMS \
  55. (3, (2, BOOST_PP_DEC(BOOST_PHOENIX_ACTOR_LIMIT), \
  56. <boost/phoenix/bind/bind_function.hpp>))
  57. #include BOOST_PHOENIX_ITERATE()
  58. #if defined(__WAVE__) && defined (BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  59. #pragma wave option(output: null)
  60. #endif
  61. #endif
  62. }}
  63. #endif
  64. #else
  65. template <
  66. typename RT
  67. , BOOST_PP_ENUM_PARAMS(BOOST_PHOENIX_ITERATION, typename T)
  68. , BOOST_PHOENIX_typename_A
  69. >
  70. inline
  71. typename detail::expression::function_eval<
  72. detail::function_ptr<
  73. BOOST_PHOENIX_ITERATION
  74. , RT
  75. , RT(*)(BOOST_PP_ENUM_PARAMS(BOOST_PHOENIX_ITERATION, T))
  76. >
  77. , BOOST_PHOENIX_A
  78. >::type const
  79. bind(
  80. RT(*f)(BOOST_PP_ENUM_PARAMS(BOOST_PHOENIX_ITERATION, T))
  81. , BOOST_PHOENIX_A_const_ref_a
  82. )
  83. {
  84. typedef detail::function_ptr<
  85. BOOST_PHOENIX_ITERATION
  86. , RT
  87. , RT(*)(BOOST_PP_ENUM_PARAMS(BOOST_PHOENIX_ITERATION, T))
  88. > fp_type;
  89. return
  90. detail::expression::function_eval<
  91. fp_type
  92. , BOOST_PHOENIX_A
  93. >::make(
  94. fp_type(f)
  95. , BOOST_PHOENIX_a
  96. );
  97. }
  98. #endif