mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
20 lines
557 B
C++
20 lines
557 B
C++
#ifndef SPROUT_COMPOST_ANALYSES_AMPLITUDE_SPECTRUM_HPP
|
|
#define SPROUT_COMPOST_ANALYSES_AMPLITUDE_SPECTRUM_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/range/adaptor/amplitude_spectrum.hpp>
|
|
|
|
namespace sprout {
|
|
namespace compost {
|
|
namespace analyses {
|
|
//
|
|
// amplitude_spectrum
|
|
//
|
|
using sprout::adaptors::amplitude_spectrum;
|
|
} // namespace analyses
|
|
|
|
using sprout::compost::analyses::amplitude_spectrum;
|
|
} // namespace compost
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_ANALYSES_AMPLITUDE_SPECTRUM_HPP
|