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)
|
|
|
|
=============================================================================*/
|
2013-04-06 04:06:51 +00:00
|
|
|
#ifndef SPROUT_INDEX_TUPLE_METAFUNCTION_HPP
|
|
|
|
#define SPROUT_INDEX_TUPLE_METAFUNCTION_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-05-10 10:52:39 +00:00
|
|
|
#include <sprout/index_tuple/make_integer_sequence.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/make_index_tuple.hpp>
|
2013-05-10 10:52:39 +00:00
|
|
|
#include <sprout/index_tuple/integer_pack.hpp>
|
|
|
|
#include <sprout/index_tuple/index_pack.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/integer_range.hpp>
|
|
|
|
#include <sprout/index_tuple/index_range.hpp>
|
|
|
|
#include <sprout/index_tuple/integer_n.hpp>
|
|
|
|
#include <sprout/index_tuple/index_n.hpp>
|
2013-05-10 10:52:39 +00:00
|
|
|
#include <sprout/index_tuple/make_index_sequence.hpp>
|
|
|
|
#include <sprout/index_tuple/index_sequence_for.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_METAFUNCTION_HPP
|