|
Last change
on this file since 29 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
1021 bytes
|
| Line | |
|---|
| 1 | /*============================================================================= |
|---|
| 2 | Copyright (c) 2006 Tobias Schwinger |
|---|
| 3 | http://spirit.sourceforge.net/ |
|---|
| 4 | |
|---|
| 5 | Use, modification and distribution is subject to the Boost Software |
|---|
| 6 | License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
|---|
| 7 | http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 8 | =============================================================================*/ |
|---|
| 9 | #if !defined(BOOST_SPIRIT_CONFIX_FWD_HPP) |
|---|
| 10 | #define BOOST_SPIRIT_CONFIX_FWD_HPP |
|---|
| 11 | |
|---|
| 12 | #include <boost/spirit/core/parser.hpp> |
|---|
| 13 | |
|---|
| 14 | namespace boost { namespace spirit { |
|---|
| 15 | |
|---|
| 16 | struct is_nested; |
|---|
| 17 | struct non_nested; |
|---|
| 18 | struct is_lexeme; |
|---|
| 19 | struct non_lexeme; |
|---|
| 20 | |
|---|
| 21 | template < |
|---|
| 22 | typename OpenT, typename ExprT, typename CloseT, |
|---|
| 23 | typename CategoryT = plain_parser_category, |
|---|
| 24 | typename NestedT = non_nested, typename LexemeT = non_lexeme |
|---|
| 25 | > |
|---|
| 26 | struct confix_parser; |
|---|
| 27 | |
|---|
| 28 | template<typename OpenT, typename CloseT> |
|---|
| 29 | struct comment_nest_parser; |
|---|
| 30 | |
|---|
| 31 | }} // namespace boost::spirit |
|---|
| 32 | |
|---|
| 33 | #endif |
|---|
| 34 | |
|---|
| 35 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.