1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/fixed_container/fixed_size.hpp
bolero-MURAKAMI b3bb8121e8 最初
2011-09-01 02:48:32 +00:00

22 lines
649 B
C++

#ifndef SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP
#define SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
namespace sprout {
//
// fixed_size
//
template<typename Container>
struct fixed_size {
public:
typedef typename sprout::fixed_container_traits<Container>::size_type value
= sprout::fixed_container_traits<Container>::fixed_size
;
typedef std::integral_constant<typename sprout::fixed_container_traits<Container>::size_type, value> type;
};
} // namespace sprout
#endif // #ifndef SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP