mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
21 lines
523 B
C++
21 lines
523 B
C++
|
#ifndef SPROUT_COMPOST_WAVES_SINUSOIDAL_HPP
|
||
|
#define SPROUT_COMPOST_WAVES_SINUSOIDAL_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/range/adaptor/sinusoidal.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace compost {
|
||
|
namespace waves {
|
||
|
//
|
||
|
// sinusoidal
|
||
|
//
|
||
|
namespace {
|
||
|
SPROUT_STATIC_CONSTEXPR sprout::adaptors::sinusoidal_forwarder sinusoidal{};
|
||
|
} // anonymous-namespace
|
||
|
} // namespace waves
|
||
|
} // namespace compost
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_COMPOST_WAVES_SINUSOIDAL_HPP
|