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 #include <boost/fusion/container/deque/deque.hpp> 9 10 #define FUSION_SEQUENCE deque 11 #define FUSION_TRAVERSAL_TAG bidirectional_traversal_tag 12 #include "./iterator.hpp" 13 14 int main()15main() 16 { 17 test(); 18 return boost::report_errors(); 19 } 20