Sprout/sprout/index_tuple/enable_make_indexes.hpp

31 lines
924 B
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 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_ENABLE_MAKE_INDEXES_HPP
#define SPROUT_INDEX_TUPLE_ENABLE_MAKE_INDEXES_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// enable_make_indexes
//
template<typename IndexTupleType>
struct enable_make_indexes
: public IndexTupleType::type
{
public:
typedef typename IndexTupleType::type type;
public:
static SPROUT_CONSTEXPR type make() {
return type();
}
};
} // namespace sprout
#endif // #ifndef SPROUT_INDEX_TUPLE_ENABLE_MAKE_INDEXES_HPP