confix_fwd.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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_CONFIX_FWD_HPP)
  8. #define BOOST_SPIRIT_CONFIX_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. #include <boost/spirit/home/classic/core/parser.hpp>
  11. namespace boost { namespace spirit {
  12. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  13. struct is_nested;
  14. struct non_nested;
  15. struct is_lexeme;
  16. struct non_lexeme;
  17. template <
  18. typename OpenT, typename ExprT, typename CloseT,
  19. typename CategoryT = plain_parser_category,
  20. typename NestedT = non_nested, typename LexemeT = non_lexeme
  21. >
  22. struct confix_parser;
  23. template<typename OpenT, typename CloseT>
  24. struct comment_nest_parser;
  25. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  26. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  27. #endif