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_EXCEPTIONS_FWD_HPP) 9 #define BOOST_SPIRIT_EXCEPTIONS_FWD_HPP 10 11 #include <boost/spirit/home/classic/namespace.hpp> 12 #include <boost/spirit/home/classic/core/nil.hpp> 13 14 namespace boost { namespace spirit { 15 16 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN 17 18 template <typename ErrorDescrT, typename IteratorT = char const*> 19 struct parser_error; 20 21 template <typename ErrorDescrT, typename ParserT> 22 struct assertive_parser; 23 24 template <typename ErrorDescrT> 25 struct assertion; 26 27 template <typename T = nil_t> 28 struct error_status; 29 30 template <typename ErrorDescrT, typename ParserT, typename HandlerT> 31 struct fallback_parser; 32 33 template <typename ErrorDescrT> 34 struct guard; 35 36 BOOST_SPIRIT_CLASSIC_NAMESPACE_END 37 38 }} // namespace BOOST_SPIRIT_CLASSIC_NS 39 40 #endif 41 42