iterate_impl.hpp 816 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef BOOST_METAPARSE_V1_IMPL_FWD_ITERATE_IMPL_HPP
  2. #define BOOST_METAPARSE_V1_IMPL_FWD_ITERATE_IMPL_HPP
  3. // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #include <boost/metaparse/v1/is_error.hpp>
  8. #include <boost/metaparse/v1/get_result.hpp>
  9. #include <boost/metaparse/v1/get_remaining.hpp>
  10. #include <boost/metaparse/v1/get_position.hpp>
  11. #include <boost/mpl/deque.hpp>
  12. #include <boost/mpl/eval_if.hpp>
  13. #include <boost/mpl/push_back.hpp>
  14. namespace boost
  15. {
  16. namespace metaparse
  17. {
  18. namespace v1
  19. {
  20. namespace impl
  21. {
  22. template <int N, class P, class Accum>
  23. struct iterate_impl;
  24. }
  25. }
  26. }
  27. }
  28. #endif