From 1befbf0d16d95037fb699f40845abbcb02e86d79 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 15 May 2012 15:53:27 -0700 Subject: fft: should not export for static class member --- gr-fft/include/fft/fft_vcc.h | 2 +- gr-fft/include/fft/fft_vfc.h | 2 +- gr-fft/include/fft/goertzel_fc.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gr-fft/include') diff --git a/gr-fft/include/fft/fft_vcc.h b/gr-fft/include/fft/fft_vcc.h index 561ae858d..cb07b166d 100644 --- a/gr-fft/include/fft/fft_vcc.h +++ b/gr-fft/include/fft/fft_vcc.h @@ -40,7 +40,7 @@ namespace gr { * \brief Compute forward or reverse FFT. complex vector in / complex vector out. * \ingroup dft_blk */ - static FFT_API sptr make(int fft_size, bool forward, + static sptr make(int fft_size, bool forward, const std::vector &window, bool shift=false, int nthreads=1); diff --git a/gr-fft/include/fft/fft_vfc.h b/gr-fft/include/fft/fft_vfc.h index fc48ceefe..ec441d66a 100644 --- a/gr-fft/include/fft/fft_vfc.h +++ b/gr-fft/include/fft/fft_vfc.h @@ -40,7 +40,7 @@ namespace gr { * \brief Compute forward or reverse FFT. float vector in / complex vector out. * \ingroup dft_blk */ - static FFT_API sptr make(int fft_size, bool forward, + static sptr make(int fft_size, bool forward, const std::vector &window, int nthreads=1); diff --git a/gr-fft/include/fft/goertzel_fc.h b/gr-fft/include/fft/goertzel_fc.h index 4d3fa8dcf..5b3c8f1c4 100644 --- a/gr-fft/include/fft/goertzel_fc.h +++ b/gr-fft/include/fft/goertzel_fc.h @@ -40,7 +40,7 @@ namespace gr { * \brief Goertzel single-bin DFT calculation. * \ingroup dft_blk */ - static FFT_API sptr make(int rate, int len, float freq); + static sptr make(int rate, int len, float freq); virtual void set_freq (float freq) = 0; -- cgit