Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-19 09:47:51

0001 //  Copyright (c) 2001 Daniel C. Nuffer
0002 //  Copyright (c) 2001-2011 Hartmut Kaiser
0003 // 
0004 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #if !defined(BOOST_SPIRIT_ITERATOR_NO_CHECK_POLICY_MAR_16_2007_1121AM)
0008 #define BOOST_SPIRIT_ITERATOR_NO_CHECK_POLICY_MAR_16_2007_1121AM
0009 
0010 #include <boost/spirit/home/support/iterators/multi_pass_fwd.hpp>
0011 #include <boost/spirit/home/support/iterators/detail/multi_pass.hpp>
0012 
0013 namespace boost { namespace spirit { namespace iterator_policies
0014 {
0015     ///////////////////////////////////////////////////////////////////////////
0016     //  class no_check
0017     //  Implementation of the CheckingPolicy used by multi_pass
0018     //  It does not do anything :-)
0019     ///////////////////////////////////////////////////////////////////////////
0020     struct no_check
0021     {
0022         ///////////////////////////////////////////////////////////////////////
0023         struct unique : public detail::default_checking_policy {};
0024 
0025         ///////////////////////////////////////////////////////////////////////
0026         struct shared {};
0027     };
0028 
0029 }}}
0030 
0031 #endif