Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 10:01:55

0001 /*=============================================================================
0002     Copyright (c) 2006 Tobias Schwinger
0003     http://spirit.sourceforge.net/
0004 
0005   Distributed under the Boost Software License, Version 1.0. (See accompanying
0006   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0007 =============================================================================*/
0008 #if !defined(BOOST_SPIRIT_SKIPPER_FWD_HPP)
0009 #define BOOST_SPIRIT_SKIPPER_FWD_HPP
0010 
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012 #include <boost/spirit/home/classic/core/scanner/scanner_fwd.hpp>
0013 
0014 namespace boost { namespace spirit {
0015 
0016 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0017 
0018     template <typename BaseT = iteration_policy>
0019     struct skipper_iteration_policy;
0020 
0021     template <typename BaseT = iteration_policy>
0022     struct no_skipper_iteration_policy; 
0023 
0024     template <typename ParserT, typename BaseT = iteration_policy>
0025     class skip_parser_iteration_policy;
0026 
0027 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0028 
0029 }} // namespace BOOST_SPIRIT_CLASSIC_NS
0030 
0031 #endif
0032