2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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 14:10:24 +00:00
|
|
|
#ifndef SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
#define SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-07-15 12:20:56 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple_fwd.hpp>
|
2013-03-27 08:55:14 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple_decl.hpp>
|
2012-07-15 12:20:56 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
2012-10-27 16:04:13 +00:00
|
|
|
#include <sprout/tuple/tuple/comparison.hpp>
|
2013-04-22 04:04:27 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple_size.hpp>
|
|
|
|
#include <sprout/tuple/tuple/tuple_element.hpp>
|
2012-07-15 12:20:56 +00:00
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2013-02-04 16:02:59 +00:00
|
|
|
#include <sprout/tuple/tuple/hash.hpp>
|
2012-07-15 12:20:56 +00:00
|
|
|
#include <sprout/tuple/tuple/ignore.hpp>
|
|
|
|
#include <sprout/tuple/tuple/make_tuple.hpp>
|
|
|
|
#include <sprout/tuple/tuple/type_traits.hpp>
|
2013-04-22 04:04:27 +00:00
|
|
|
#include <sprout/tuple/tuple/tuple_access_traits.hpp>
|
2013-03-31 01:09:02 +00:00
|
|
|
#include <sprout/tuple/flexibly_construct.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
|
2011-10-30 14:10:24 +00:00
|
|
|
#endif // #ifndef SPROUT_TUPLE_TUPLE_HPP
|