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