File indexing completed on 2025-01-31 10:02:08
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_SPIRIT_ESCAPE_CHAR_FWD_HPP)
0009 #define BOOST_SPIRIT_ESCAPE_CHAR_FWD_HPP
0010
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012
0013 namespace boost { namespace spirit {
0014
0015 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0016
0017 template <unsigned long Flags, typename CharT = char>
0018 struct escape_char_parser;
0019
0020 template <
0021 class ParserT, typename ActionT,
0022 unsigned long Flags, typename CharT = char>
0023 struct escape_char_action;
0024
0025 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0026
0027 }}
0028
0029 #endif
0030