1 /*=============================================================================
2     Copyright (c) 2006 Tobias Schwinger
3     http://spirit.sourceforge.net/
4 
5   Distributed under the Boost Software License, Version 1.0. (See accompanying
6   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8 #if !defined(BOOST_SPIRIT_ESCAPE_CHAR_FWD_HPP)
9 #define BOOST_SPIRIT_ESCAPE_CHAR_FWD_HPP
10 
11 #include <boost/spirit/home/classic/namespace.hpp>
12 
13 namespace boost { namespace spirit {
14 
15 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
16 
17     template <unsigned long Flags, typename CharT = char>
18     struct escape_char_parser;
19 
20     template <
21         class ParserT, typename ActionT,
22         unsigned long Flags, typename CharT = char>
23     struct escape_char_action;
24 
25 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
26 
27 }} // namespace BOOST_SPIRIT_CLASSIC_NS
28 
29 #endif
30 
31