Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 10:02:17

0001 //  Copyright (c) 2001-2011 Hartmut Kaiser
0002 // 
0003 //  Distributed under the Boost Software License, Version 1.0. (See accompanying 
0004 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #if !defined(BOOST_SPIRIT_LEX_PASS_FLAGS_JUN_09_2009_0840PM)
0007 #define BOOST_SPIRIT_LEX_PASS_FLAGS_JUN_09_2009_0840PM
0008 
0009 #if defined(_MSC_VER)
0010 #pragma once
0011 #endif
0012 
0013 #include <boost/spirit/home/support/detail/scoped_enum_emulation.hpp>
0014 
0015 namespace boost { namespace spirit { namespace lex
0016 {
0017     ///////////////////////////////////////////////////////////////////////////
0018     BOOST_SCOPED_ENUM_START(pass_flags) 
0019     { 
0020         pass_fail = 0,        // make the current match fail in retrospective
0021         pass_normal = 1,      // continue normal token matching, that's the default 
0022         pass_ignore = 2       // ignore the current token and start matching the next
0023     };
0024     BOOST_SCOPED_ENUM_END
0025 
0026 }}}
0027 
0028 #endif