2012-04-04 13:23:41 +00:00
|
|
|
#ifndef SPROUT_CONTAINER_INDEXES_HPP
|
|
|
|
#define SPROUT_CONTAINER_INDEXES_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
2012-04-04 13:59:02 +00:00
|
|
|
#include <sprout/index_tuple/detail/make_indexes_helper.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/container/container_traits.hpp>
|
2012-04-04 13:23:41 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace containers {
|
|
|
|
//
|
|
|
|
// container_indexes
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct container_indexes
|
2012-04-04 13:59:02 +00:00
|
|
|
: public sprout::detail::make_indexes_helper<
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::make_index_tuple<sprout::container_traits<Container>::static_size>
|
2012-04-04 13:23:41 +00:00
|
|
|
>
|
|
|
|
{};
|
|
|
|
} // namespace containers
|
|
|
|
|
|
|
|
//
|
|
|
|
// container_indexes
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct container_indexes
|
|
|
|
: public sprout::containers::container_indexes<Container>
|
|
|
|
{};
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_INDEXES_HPP
|