2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-10-30 23:10:24 +09:00
|
|
|
#ifndef SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
#define SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-07-15 21:20:56 +09:00
|
|
|
#include <sprout/tuple/tuple/tuple_fwd.hpp>
|
2013-03-27 17:55:14 +09:00
|
|
|
#include <sprout/tuple/tuple/tuple_decl.hpp>
|
2012-07-15 21:20:56 +09:00
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
2012-10-28 01:04:13 +09:00
|
|
|
#include <sprout/tuple/tuple/comparison.hpp>
|
2013-04-22 13:04:27 +09:00
|
|
|
#include <sprout/tuple/tuple/tuple_size.hpp>
|
|
|
|
#include <sprout/tuple/tuple/tuple_element.hpp>
|
2012-07-15 21:20:56 +09:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2013-02-05 01:02:59 +09:00
|
|
|
#include <sprout/tuple/tuple/hash.hpp>
|
2012-07-15 21:20:56 +09:00
|
|
|
#include <sprout/tuple/tuple/ignore.hpp>
|
|
|
|
#include <sprout/tuple/tuple/make_tuple.hpp>
|
|
|
|
#include <sprout/tuple/tuple/type_traits.hpp>
|
2013-04-22 13:04:27 +09:00
|
|
|
#include <sprout/tuple/tuple/tuple_access_traits.hpp>
|
2013-03-31 10:09:02 +09:00
|
|
|
#include <sprout/tuple/flexibly_construct.hpp>
|
2011-11-06 10:56:57 +09:00
|
|
|
|
2011-10-30 23:10:24 +09:00
|
|
|
#endif // #ifndef SPROUT_TUPLE_TUPLE_HPP
|