Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_adaptive_fir_ccf.h
index 6df0bf5b2f8cde1eacf61f70cd743cd985812396..f860f4faa1b7d3244dc8b91bcb119ef97cd70792 100644 (file)
@@ -27,7 +27,7 @@
 
 /*!
  * \brief Adaptive FIR filter with gr_complex input, gr_complex output and float taps
- * \ingroup filter
+ * \ingroup filter_blk
  */
 class gr_adaptive_fir_ccf : public gr_sync_decimator
 {
@@ -44,9 +44,10 @@ protected:
 
   // Override to calculate new weight from old, corresponding input
   virtual void update_tap(float &tap, const gr_complex &in) = 0;
-  
+
+  gr_adaptive_fir_ccf(const char *name, int decimation, const std::vector<float> &taps);
+
 public:
-  gr_adaptive_fir_ccf(char *name, int decimation, const std::vector<float> &taps);
   void set_taps(const std::vector<float> &taps);
 
   int work(int noutput_items,