end.hpp 1020 B

1234567891011121314151617181920212223242526272829303132
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 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 !defined(FUSION_END_10022005_1619)
  7. #define FUSION_END_10022005_1619
  8. #include <boost/fusion/support/config.hpp>
  9. #include <boost/mpl/begin_end.hpp>
  10. #include <boost/fusion/sequence/intrinsic/end.hpp>
  11. #include <boost/fusion/adapted/mpl/detail/end_impl.hpp>
  12. #include <boost/fusion/iterator/mpl/fusion_iterator.hpp>
  13. namespace boost { namespace mpl
  14. {
  15. template <typename Tag>
  16. struct end_impl;
  17. template <>
  18. struct end_impl<fusion::fusion_sequence_tag>
  19. {
  20. template <typename Sequence>
  21. struct apply
  22. {
  23. typedef fusion_iterator<typename fusion::result_of::end<Sequence>::type> type;
  24. };
  25. };
  26. }}
  27. #endif