1 /*============================================================================= 2 Copyright (c) 2015 Kohei Takahashi 3 4 Use modification and distribution are subject to the Boost Software 5 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 http://www.boost.org/LICENSE_1_0.txt). 7 ==============================================================================*/ 8 9 #include <boost/config.hpp> 10 11 #if defined(BOOST_NO_CXX11_HDR_TUPLE) || \ 12 defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) 13 # error "does not meet requirements" 14 #endif 15 16 #include <tuple> 17 #include <boost/fusion/include/std_tuple.hpp> 18 19 #define FUSION_SEQUENCE std::tuple 20 #include "convert.hpp" 21