mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
/*=============================================================================
|
|
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)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_TUPLE_TUPLE_HPP
|
|
#define SPROUT_TUPLE_TUPLE_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/tuple/tuple/tuple_fwd.hpp>
|
|
#include <sprout/tuple/tuple/tuple_decl.hpp>
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
|
#include <sprout/tuple/tuple/comparison.hpp>
|
|
#include <sprout/tuple/tuple/tuple_size.hpp>
|
|
#include <sprout/tuple/tuple/tuple_element.hpp>
|
|
#include <sprout/tuple/tuple/get.hpp>
|
|
#include <sprout/tuple/tuple/hash.hpp>
|
|
#include <sprout/tuple/tuple/ignore.hpp>
|
|
#include <sprout/tuple/tuple/make_tuple.hpp>
|
|
#include <sprout/tuple/tuple/type_traits.hpp>
|
|
#include <sprout/tuple/tuple/tuple_access_traits.hpp>
|
|
#include <sprout/tuple/flexibly_construct.hpp>
|
|
|
|
#endif // #ifndef SPROUT_TUPLE_TUPLE_HPP
|