diff options
Diffstat (limited to 'gr-digital/lib/pfb_clock_sync_ccf_impl.h')
-rw-r--r-- | gr-digital/lib/pfb_clock_sync_ccf_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-digital/lib/pfb_clock_sync_ccf_impl.h b/gr-digital/lib/pfb_clock_sync_ccf_impl.h index 2384123af8..eecd65c587 100644 --- a/gr-digital/lib/pfb_clock_sync_ccf_impl.h +++ b/gr-digital/lib/pfb_clock_sync_ccf_impl.h @@ -63,6 +63,10 @@ private: void create_diff_taps(const std::vector<float>& newtaps, std::vector<float>& difftaps); + void set_taps(const std::vector<float>& taps, + std::vector<std::vector<float>>& ourtaps, + std::vector<std::unique_ptr<kernel::fir_filter_ccf>>& ourfilter); + public: pfb_clock_sync_ccf_impl(double sps, float loop_bw, @@ -80,10 +84,6 @@ public: void update_taps(const std::vector<float>& taps); - void set_taps(const std::vector<float>& taps, - std::vector<std::vector<float>>& ourtaps, - std::vector<std::unique_ptr<kernel::fir_filter_ccf>>& ourfilter) override; - std::vector<std::vector<float>> taps() const; std::vector<std::vector<float>> diff_taps() const; std::vector<float> channel_taps(int channel) const; |