mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
31 lines
1 KiB
C++
31 lines
1 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 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_WEED_ATTR_CNV_RESULTS_MODULUS_HPP
|
|
#define SPROUT_WEED_ATTR_CNV_RESULTS_MODULUS_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
|
#include <sprout/weed/attr_cnv/results/times.hpp>
|
|
|
|
namespace sprout {
|
|
namespace weed {
|
|
namespace attr_cnv {
|
|
namespace results {
|
|
//
|
|
// modulus
|
|
//
|
|
template<std::size_t Limit, typename T, typename = void>
|
|
struct modulus
|
|
: public sprout::weed::attr_cnv::results::times<Limit, T>
|
|
{};
|
|
} // namespace results
|
|
} // namespace attr_cnv
|
|
} // namespace weed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_WEED_ATTR_CNV_RESULTS_MODULUS_HPP
|