diff options
Diffstat (limited to 'src/fft.hpp')
| -rw-r--r-- | src/fft.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fft.hpp b/src/fft.hpp index 273a7f5..9008c05 100644 --- a/src/fft.hpp +++ b/src/fft.hpp @@ -33,6 +33,7 @@ public: FFT(FFT &&) = delete; FFT & operator=(const FFT&) = delete; + explicit FFT(std::size_t win_width); FFT(std::size_t win_width, std::unique_ptr<WindowFunction>& win_func); virtual ~FFT(); @@ -45,4 +46,4 @@ public: static RealWindow Crop(const RealWindow& input, double rate, double fmin, double fmax); }; -#endif
\ No newline at end of file +#endif |
