iterate_c.hpp 588 B

1234567891011121314151617181920212223242526
  1. #ifndef BOOST_METAPARSE_V1_ITERATE_C_HPP
  2. #define BOOST_METAPARSE_V1_ITERATE_C_HPP
  3. // Copyright Abel Sinkovics (abel@sinkovics.hu) 2011.
  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/impl/iterate_impl.hpp>
  8. #include <boost/mpl/deque.hpp>
  9. namespace boost
  10. {
  11. namespace metaparse
  12. {
  13. namespace v1
  14. {
  15. template <class P, int N>
  16. struct iterate_c : impl::iterate_impl<N, P, boost::mpl::deque<> > {};
  17. }
  18. }
  19. }
  20. #endif