Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-06 08:14:01

0001 /*=============================================================================
0002     Copyright (c) 2001-2011 Joel de Guzman
0003     Copyright (c) 2006 Dan Marsden
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(FUSION_ZIP_VIEW_ITERATOR_FWD)
0009 #define FUSION_ZIP_VIEW_ITERATOR_FWD
0010 
0011 #include <boost/fusion/support/config.hpp>
0012 #include <boost/fusion/view/detail/strictest_traversal.hpp>
0013 
0014 namespace boost { namespace fusion {
0015 
0016     template<
0017         typename IteratorSequence, 
0018         typename Traversal = typename detail::strictest_traversal<IteratorSequence>::type>
0019     struct zip_view_iterator;
0020 
0021 }}
0022 
0023 #endif