debug_handler_state.hpp 663 B

1234567891011121314151617181920
  1. /*=============================================================================
  2. Copyright (c) 2001-2014 Joel de Guzman
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #if !defined(BOOST_SPIRIT_X3_DEBUG_HANDLER_STATE_APR_21_2010_0733PM)
  7. #define BOOST_SPIRIT_X3_DEBUG_HANDLER_STATE_APR_21_2010_0733PM
  8. namespace boost { namespace spirit { namespace x3
  9. {
  10. enum debug_handler_state
  11. {
  12. pre_parse
  13. , successful_parse
  14. , failed_parse
  15. };
  16. }}}
  17. #endif