1 /*============================================================================= 2 Copyright (c) 2009 Joel de Guzman 3 4 Distributed under the Boost Software License, Version 1.0. (See accompanying 5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 ==============================================================================*/ 7 8 #include <boost/mpl/vector.hpp> 9 #include <boost/fusion/support.hpp> 10 11 typedef boost::fusion::traits::deduce_sequence < 12 13 boost::mpl::vector<int, char> 14 15 >::type seq1_t; 16 17 18 typedef boost::fusion::traits::deduce_sequence < 19 20 boost::fusion::vector<int, char> 21 22 >::type seq2_t; 23