From 7f37fada790db7d116bbfca273a92dde8c26c4cb Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 13 Nov 2021 17:01:09 -0500 Subject: [PATCH] proper defs for virtual functions --- .../include/op25_repeater/gardner_costas_cc.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/op25/gr-op25_repeater/include/op25_repeater/gardner_costas_cc.h b/op25/gr-op25_repeater/include/op25_repeater/gardner_costas_cc.h index 4d37bf9..524c5bc 100644 --- a/op25/gr-op25_repeater/include/op25_repeater/gardner_costas_cc.h +++ b/op25/gr-op25_repeater/include/op25_repeater/gardner_costas_cc.h @@ -47,13 +47,13 @@ namespace gr { * creating new instances. */ static sptr make(float samples_per_symbol, float gain_mu, float gain_omega, float alpha, float beta, float max_freq, float min_freq); - virtual void set_omega(float omega) {} - virtual float get_freq_error(void) {} - virtual int get_error_band(void) {} - virtual void set_muted(bool) {} - virtual bool is_muted(void) {} - virtual void set_tdma(bool) {} - virtual bool is_tdma(void) {} + virtual void set_omega(float omega) = 0; + virtual float get_freq_error(void) = 0; + virtual int get_error_band(void) = 0; + virtual void set_muted(bool) = 0; + virtual bool is_muted(void) = 0; + virtual void set_tdma(bool) = 0; + virtual bool is_tdma(void) = 0; }; } // namespace op25_repeater