construct.hpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*==============================================================================
  2. Copyright (c) 2001-2010 Joel de Guzman
  3. Copyright (c) 2010 Thomas Heller
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ==============================================================================*/
  7. #ifndef BOOST_PHOENIX_OBJECT_CONSTRUCT_HPP
  8. #define BOOST_PHOENIX_OBJECT_CONSTRUCT_HPP
  9. #include <boost/phoenix/core/limits.hpp>
  10. #include <boost/phoenix/core/call.hpp>
  11. #include <boost/phoenix/core/expression.hpp>
  12. #include <boost/phoenix/core/meta_grammar.hpp>
  13. #include <boost/phoenix/object/detail/target.hpp>
  14. #include <boost/phoenix/support/iterate.hpp>
  15. #include <boost/preprocessor/repetition/repeat_from_to.hpp>
  16. BOOST_PHOENIX_DEFINE_EXPRESSION_VARARG(
  17. (boost)(phoenix)(construct)
  18. , (proto::terminal<detail::target<proto::_> >)
  19. (meta_grammar)
  20. , BOOST_PHOENIX_COMPOSITE_LIMIT
  21. )
  22. namespace boost { namespace phoenix
  23. {
  24. struct construct_eval
  25. {
  26. template <typename Sig>
  27. struct result;
  28. template <typename This, typename A0, typename Context>
  29. struct result<This(A0, Context)>
  30. : detail::result_of::target<A0>
  31. {
  32. };
  33. template <typename Target, typename Context>
  34. typename detail::result_of::target<Target>::type
  35. operator()(Target, Context const &) const
  36. {
  37. return typename detail::result_of::target<Target>::type();
  38. }
  39. // Bring in the rest
  40. #include <boost/phoenix/object/detail/construct_eval.hpp>
  41. };
  42. template <typename Dummy>
  43. struct default_actions::when<rule::construct, Dummy>
  44. : call<construct_eval, Dummy>
  45. {};
  46. template <typename T>
  47. inline
  48. typename expression::construct<detail::target<T> >::type const
  49. construct()
  50. {
  51. return
  52. expression::
  53. construct<detail::target<T> >::
  54. make(detail::target<T>());
  55. }
  56. // Bring in the rest
  57. #include <boost/phoenix/object/detail/construct.hpp>
  58. }}
  59. #endif