escape_char_fwd.hpp 919 B

123456789101112131415161718192021222324252627282930
  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_ESCAPE_CHAR_FWD_HPP)
  8. #define BOOST_SPIRIT_ESCAPE_CHAR_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. namespace boost { namespace spirit {
  11. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  12. template <unsigned long Flags, typename CharT = char>
  13. struct escape_char_parser;
  14. template <
  15. class ParserT, typename ActionT,
  16. unsigned long Flags, typename CharT = char>
  17. struct escape_char_action;
  18. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  19. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  20. #endif