summaryrefslogtreecommitdiff
path: root/gr-digital/lib/timing_error_detector.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-digital/lib/timing_error_detector.h')
-rw-r--r--gr-digital/lib/timing_error_detector.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/gr-digital/lib/timing_error_detector.h b/gr-digital/lib/timing_error_detector.h
index 439be37b78..7d11c9c99c 100644
--- a/gr-digital/lib/timing_error_detector.h
+++ b/gr-digital/lib/timing_error_detector.h
@@ -232,11 +232,11 @@ public:
: timing_error_detector(TED_MUELLER_AND_MULLER, 1, 2, false, false, constellation)
{
}
- ~ted_mueller_and_muller(){};
+ ~ted_mueller_and_muller() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -270,11 +270,11 @@ public:
TED_MOD_MUELLER_AND_MULLER, 1, 3, false, false, constellation)
{
}
- ~ted_mod_mueller_and_muller(){};
+ ~ted_mod_mueller_and_muller() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -297,11 +297,11 @@ public:
: timing_error_detector(TED_ZERO_CROSSING, 2, 3, false, false, constellation)
{
}
- ~ted_zero_crossing(){};
+ ~ted_zero_crossing() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -325,11 +325,11 @@ public:
: timing_error_detector(TED_GARDNER, 2, 3, false, false, constellation_sptr())
{
}
- ~ted_gardner(){};
+ ~ted_gardner() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -351,11 +351,11 @@ public:
: timing_error_detector(TED_EARLY_LATE, 2, 2, true, false, constellation_sptr())
{
}
- ~ted_early_late(){};
+ ~ted_early_late() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -382,11 +382,11 @@ public:
TED_DANDREA_AND_MENGALI_GEN_MSK, 2, 4, false, false, constellation_sptr())
{
}
- ~ted_generalized_msk(){};
+ ~ted_generalized_msk() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -412,11 +412,11 @@ public:
TED_MENGALI_AND_DANDREA_GMSK, 2, 4, false, false, constellation_sptr())
{
}
- ~ted_gaussian_msk(){};
+ ~ted_gaussian_msk() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -447,11 +447,11 @@ public:
TED_SIGNAL_TIMES_SLOPE_ML, 1, 1, false, true, constellation_sptr())
{
}
- ~ted_signal_times_slope_ml(){};
+ ~ted_signal_times_slope_ml() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
/*!
@@ -482,11 +482,11 @@ public:
TED_SIGNUM_TIMES_SLOPE_ML, 1, 1, false, true, constellation_sptr())
{
}
- ~ted_signum_times_slope_ml(){};
+ ~ted_signum_times_slope_ml() override{};
private:
- float compute_error_cf();
- float compute_error_ff();
+ float compute_error_cf() override;
+ float compute_error_ff() override;
};
} /* namespace digital */