1 /*============================================================================= 2 Copyright (c) 2001-2011 Joel de Guzman 3 Copyright (c) 2006 Dan Marsden 4 5 Distributed under the Boost Software License, Version 1.0. (See accompanying 6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 ==============================================================================*/ 8 #if !defined(FUSION_ZIP_VIEW_ITERATOR_FWD) 9 #define FUSION_ZIP_VIEW_ITERATOR_FWD 10 11 #include <boost/fusion/support/config.hpp> 12 #include <boost/fusion/view/detail/strictest_traversal.hpp> 13 14 namespace boost { namespace fusion { 15 16 template< 17 typename IteratorSequence, 18 typename Traversal = typename detail::strictest_traversal<IteratorSequence>::type> 19 struct zip_view_iterator; 20 21 }} 22 23 #endif 24