• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
3 
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_DEBUG_HANDLER_STATE_APR_21_2010_0733PM)
8 #define BOOST_SPIRIT_DEBUG_HANDLER_STATE_APR_21_2010_0733PM
9 
10 #if defined(_MSC_VER)
11 #pragma once
12 #endif
13 
14 namespace boost { namespace spirit { namespace qi
15 {
16     enum debug_handler_state
17     {
18         pre_parse
19       , successful_parse
20       , failed_parse
21     };
22 }}}
23 
24 #endif
25