commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r10343 - gnuradio/branches/developers/michaelld/misc_f


From: michaelld
Subject: [Commit-gnuradio] r10343 - gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter
Date: Fri, 30 Jan 2009 07:06:19 -0700 (MST)

Author: michaelld
Date: 2009-01-30 07:06:18 -0700 (Fri, 30 Jan 2009)
New Revision: 10343

Modified:
   
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.h
   
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.i
Log:
Correct constructor protection level in gr_adaptive_fir_ccf.h and .i .



Modified: 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.h
===================================================================
--- 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.h
        2009-01-30 07:18:33 UTC (rev 10342)
+++ 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.h
        2009-01-30 14:06:18 UTC (rev 10343)
@@ -44,9 +44,10 @@
 
   // 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(const char *name, int decimation, const 
std::vector<float> &taps);
   void set_taps(const std::vector<float> &taps);
 
   int work(int noutput_items,

Modified: 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.i
===================================================================
--- 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.i
        2009-01-30 07:18:33 UTC (rev 10342)
+++ 
gnuradio/branches/developers/michaelld/misc_fixes/gnuradio-core/src/lib/filter/gr_adaptive_fir_ccf.i
        2009-01-30 14:06:18 UTC (rev 10343)
@@ -22,7 +22,7 @@
 
 class gr_adaptive_fir_ccf : public gr_sync_decimator
 {
-private:
+protected:
   gr_adaptive_fir_ccf(char *name, int decimation, const std::vector<float> 
&taps);
 
 public:





reply via email to

[Prev in Thread] Current Thread [Next in Thread]