exceptions_fwd.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*=============================================================================
  2. Copyright (c) 2006 Tobias Schwinger
  3. http://spirit.sourceforge.net/
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. =============================================================================*/
  7. #if !defined(BOOST_SPIRIT_EXCEPTIONS_FWD_HPP)
  8. #define BOOST_SPIRIT_EXCEPTIONS_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. #include <boost/spirit/home/classic/core/nil.hpp>
  11. namespace boost { namespace spirit {
  12. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  13. template <typename ErrorDescrT, typename IteratorT = char const*>
  14. struct parser_error;
  15. template <typename ErrorDescrT, typename ParserT>
  16. struct assertive_parser;
  17. template <typename ErrorDescrT>
  18. struct assertion;
  19. template <typename T = nil_t>
  20. struct error_status;
  21. template <typename ErrorDescrT, typename ParserT, typename HandlerT>
  22. struct fallback_parser;
  23. template <typename ErrorDescrT>
  24. struct guard;
  25. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  26. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  27. #endif