summaryrefslogtreecommitdiff
path: root/gr-digital/lib/mpsk_snr_est_cc_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-digital/lib/mpsk_snr_est_cc_impl.h')
-rw-r--r--gr-digital/lib/mpsk_snr_est_cc_impl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gr-digital/lib/mpsk_snr_est_cc_impl.h b/gr-digital/lib/mpsk_snr_est_cc_impl.h
index 94978756d4..4e7ed26fdf 100644
--- a/gr-digital/lib/mpsk_snr_est_cc_impl.h
+++ b/gr-digital/lib/mpsk_snr_est_cc_impl.h
@@ -33,32 +33,32 @@ public:
mpsk_snr_est_cc_impl(snr_est_type_t type,
int tag_nsamples = 10000,
double alpha = 0.001);
- ~mpsk_snr_est_cc_impl();
+ ~mpsk_snr_est_cc_impl() override;
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
//! Return the estimated signal-to-noise ratio in decibels
- double snr();
+ double snr() override;
//! Return the type of estimator in use
- snr_est_type_t type() const;
+ snr_est_type_t type() const override;
//! Return how many samples between SNR tags
- int tag_nsample() const;
+ int tag_nsample() const override;
//! Get the running-average coefficient
- double alpha() const;
+ double alpha() const override;
//! Set type of estimator to use
- void set_type(snr_est_type_t t);
+ void set_type(snr_est_type_t t) override;
//! Set the number of samples between SNR tags
- void set_tag_nsample(int n);
+ void set_tag_nsample(int n) override;
//! Set the running-average coefficient
- void set_alpha(double alpha);
+ void set_alpha(double alpha) override;
};
} /* namespace digital */