summaryrefslogtreecommitdiff
path: root/gr-fft/include/fft/fft_vcc.h
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-04-04 14:16:11 -0400
committerTom Rondeau <trondeau@vt.edu>2013-04-04 14:16:11 -0400
commit6b35d0dbf735efe42e4f9de0c51658091f58208f (patch)
tree2f511bdf143e557d9d77105386b4f398108cfbab /gr-fft/include/fft/fft_vcc.h
parented944b382a215d3020abe7ab9aafcbcbd16e8400 (diff)
parentd44322fd03661c1eb6e45e3e364e81bb5131239b (diff)
Merge branch 'master_grc_components'
Diffstat (limited to 'gr-fft/include/fft/fft_vcc.h')
-rw-r--r--gr-fft/include/fft/fft_vcc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-fft/include/fft/fft_vcc.h b/gr-fft/include/fft/fft_vcc.h
index cb07b166d2..2f5b5a23f0 100644
--- a/gr-fft/include/fft/fft_vcc.h
+++ b/gr-fft/include/fft/fft_vcc.h
@@ -29,6 +29,10 @@
namespace gr {
namespace fft {
+ /*!
+ * \brief Compute forward or reverse FFT. complex vector in / complex vector out.
+ * \ingroup fourier_analysis_blk
+ */
class FFT_API fft_vcc : virtual public gr_sync_block
{
public:
@@ -36,13 +40,9 @@ namespace gr {
// gr::fft::fft_vcc::sptr
typedef boost::shared_ptr<fft_vcc> sptr;
- /*!
- * \brief Compute forward or reverse FFT. complex vector in / complex vector out.
- * \ingroup dft_blk
- */
static sptr make(int fft_size, bool forward,
- const std::vector<float> &window,
- bool shift=false, int nthreads=1);
+ const std::vector<float> &window,
+ bool shift=false, int nthreads=1);
virtual void set_nthreads(int n) = 0;