skipper_fwd.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. /*=============================================================================
  2. Copyright (c) 2006 Tobias Schwinger
  3. http://spirit.sourceforge.net/
  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. #if !defined(BOOST_SPIRIT_SKIPPER_FWD_HPP)
  8. #define BOOST_SPIRIT_SKIPPER_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. #include <boost/spirit/home/classic/core/scanner/scanner_fwd.hpp>
  11. namespace boost { namespace spirit {
  12. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  13. template <typename BaseT = iteration_policy>
  14. struct skipper_iteration_policy;
  15. template <typename BaseT = iteration_policy>
  16. struct no_skipper_iteration_policy;
  17. template <typename ParserT, typename BaseT = iteration_policy>
  18. class skip_parser_iteration_policy;
  19. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  20. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  21. #endif