mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-29 06:27:44 +00:00 
			
		
		
		
	clang-tidy: apply modernize-use-equals-default fix. See https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html
This commit is contained in:
		| @@ -55,7 +55,7 @@ ArraySignalConditioner::ArraySignalConditioner(ConfigurationInterface *configura | ||||
|  | ||||
|  | ||||
| // Destructor | ||||
| ArraySignalConditioner::~ArraySignalConditioner() {} | ||||
| ArraySignalConditioner::~ArraySignalConditioner() = default; | ||||
|  | ||||
|  | ||||
| void ArraySignalConditioner::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -55,7 +55,7 @@ SignalConditioner::SignalConditioner(ConfigurationInterface *configuration, | ||||
|  | ||||
|  | ||||
| // Destructor | ||||
| SignalConditioner::~SignalConditioner() {} | ||||
| SignalConditioner::~SignalConditioner() = default; | ||||
|  | ||||
|  | ||||
| void SignalConditioner::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -71,9 +71,7 @@ ByteToShort::ByteToShort(ConfigurationInterface* configuration, std::string role | ||||
| } | ||||
|  | ||||
|  | ||||
| ByteToShort::~ByteToShort() | ||||
| { | ||||
| } | ||||
| ByteToShort::~ByteToShort() = default; | ||||
|  | ||||
|  | ||||
| void ByteToShort::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -77,9 +77,7 @@ IbyteToCbyte::IbyteToCbyte(ConfigurationInterface* configuration, std::string ro | ||||
| } | ||||
|  | ||||
|  | ||||
| IbyteToCbyte::~IbyteToCbyte() | ||||
| { | ||||
| } | ||||
| IbyteToCbyte::~IbyteToCbyte() = default; | ||||
|  | ||||
|  | ||||
| void IbyteToCbyte::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -75,9 +75,7 @@ IbyteToComplex::IbyteToComplex(ConfigurationInterface* configuration, std::strin | ||||
| } | ||||
|  | ||||
|  | ||||
| IbyteToComplex::~IbyteToComplex() | ||||
| { | ||||
| } | ||||
| IbyteToComplex::~IbyteToComplex() = default; | ||||
|  | ||||
|  | ||||
| void IbyteToComplex::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -78,9 +78,7 @@ IbyteToCshort::IbyteToCshort(ConfigurationInterface* configuration, std::string | ||||
| } | ||||
|  | ||||
|  | ||||
| IbyteToCshort::~IbyteToCshort() | ||||
| { | ||||
| } | ||||
| IbyteToCshort::~IbyteToCshort() = default; | ||||
|  | ||||
|  | ||||
| void IbyteToCshort::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -75,9 +75,7 @@ IshortToComplex::IshortToComplex(ConfigurationInterface* configuration, std::str | ||||
| } | ||||
|  | ||||
|  | ||||
| IshortToComplex::~IshortToComplex() | ||||
| { | ||||
| } | ||||
| IshortToComplex::~IshortToComplex() = default; | ||||
|  | ||||
|  | ||||
| void IshortToComplex::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -77,9 +77,7 @@ IshortToCshort::IshortToCshort(ConfigurationInterface* configuration, std::strin | ||||
| } | ||||
|  | ||||
|  | ||||
| IshortToCshort::~IshortToCshort() | ||||
| { | ||||
| } | ||||
| IshortToCshort::~IshortToCshort() = default; | ||||
|  | ||||
|  | ||||
| void IshortToCshort::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -79,7 +79,7 @@ BeamformerFilter::BeamformerFilter( | ||||
| } | ||||
|  | ||||
|  | ||||
| BeamformerFilter::~BeamformerFilter() {} | ||||
| BeamformerFilter::~BeamformerFilter() = default; | ||||
|  | ||||
|  | ||||
| void BeamformerFilter::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -142,9 +142,7 @@ FirFilter::FirFilter(ConfigurationInterface* configuration, std::string role, | ||||
| } | ||||
|  | ||||
|  | ||||
| FirFilter::~FirFilter() | ||||
| { | ||||
| } | ||||
| FirFilter::~FirFilter() = default; | ||||
|  | ||||
|  | ||||
| void FirFilter::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -196,9 +196,7 @@ FreqXlatingFirFilter::FreqXlatingFirFilter(ConfigurationInterface* configuration | ||||
| } | ||||
|  | ||||
|  | ||||
| FreqXlatingFirFilter::~FreqXlatingFirFilter() | ||||
| { | ||||
| } | ||||
| FreqXlatingFirFilter::~FreqXlatingFirFilter() = default; | ||||
|  | ||||
|  | ||||
| void FreqXlatingFirFilter::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -92,9 +92,7 @@ NotchFilter::NotchFilter(ConfigurationInterface* configuration, std::string role | ||||
| } | ||||
|  | ||||
|  | ||||
| NotchFilter::~NotchFilter() | ||||
| { | ||||
| } | ||||
| NotchFilter::~NotchFilter() = default; | ||||
|  | ||||
|  | ||||
| void NotchFilter::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -99,9 +99,7 @@ NotchFilterLite::NotchFilterLite(ConfigurationInterface* configuration, std::str | ||||
| } | ||||
|  | ||||
|  | ||||
| NotchFilterLite::~NotchFilterLite() | ||||
| { | ||||
| } | ||||
| NotchFilterLite::~NotchFilterLite() = default; | ||||
|  | ||||
|  | ||||
| void NotchFilterLite::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -105,9 +105,7 @@ PulseBlankingFilter::PulseBlankingFilter(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| PulseBlankingFilter::~PulseBlankingFilter() | ||||
| { | ||||
| } | ||||
| PulseBlankingFilter::~PulseBlankingFilter() = default; | ||||
|  | ||||
|  | ||||
| void PulseBlankingFilter::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -120,9 +120,7 @@ Pass_Through::Pass_Through(ConfigurationInterface* configuration, std::string ro | ||||
| } | ||||
|  | ||||
|  | ||||
| Pass_Through::~Pass_Through() | ||||
| { | ||||
| } | ||||
| Pass_Through::~Pass_Through() = default; | ||||
|  | ||||
|  | ||||
| void Pass_Through::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -51,9 +51,7 @@ HybridObservables::HybridObservables(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| HybridObservables::~HybridObservables() | ||||
| { | ||||
| } | ||||
| HybridObservables::~HybridObservables() = default; | ||||
|  | ||||
|  | ||||
| void HybridObservables::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -113,7 +113,7 @@ DirectResamplerConditioner::DirectResamplerConditioner( | ||||
| } | ||||
|  | ||||
|  | ||||
| DirectResamplerConditioner::~DirectResamplerConditioner() {} | ||||
| DirectResamplerConditioner::~DirectResamplerConditioner() = default; | ||||
|  | ||||
|  | ||||
| void DirectResamplerConditioner::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -106,7 +106,9 @@ MmseResamplerConditioner::MmseResamplerConditioner( | ||||
| } | ||||
|  | ||||
|  | ||||
| MmseResamplerConditioner::~MmseResamplerConditioner() {} | ||||
| MmseResamplerConditioner::~MmseResamplerConditioner() = default; | ||||
|  | ||||
|  | ||||
| void MmseResamplerConditioner::connect(gr::top_block_sptr top_block) | ||||
| { | ||||
|     if (dump_) | ||||
|   | ||||
| @@ -73,9 +73,7 @@ direct_resampler_conditioner_cb::direct_resampler_conditioner_cb( | ||||
| } | ||||
|  | ||||
|  | ||||
| direct_resampler_conditioner_cb::~direct_resampler_conditioner_cb() | ||||
| { | ||||
| } | ||||
| direct_resampler_conditioner_cb::~direct_resampler_conditioner_cb() = default; | ||||
|  | ||||
|  | ||||
| void direct_resampler_conditioner_cb::forecast(int noutput_items, | ||||
|   | ||||
| @@ -71,9 +71,7 @@ direct_resampler_conditioner_cc::direct_resampler_conditioner_cc( | ||||
| } | ||||
|  | ||||
|  | ||||
| direct_resampler_conditioner_cc::~direct_resampler_conditioner_cc() | ||||
| { | ||||
| } | ||||
| direct_resampler_conditioner_cc::~direct_resampler_conditioner_cc() = default; | ||||
|  | ||||
|  | ||||
| void direct_resampler_conditioner_cc::forecast(int noutput_items, | ||||
|   | ||||
| @@ -71,9 +71,7 @@ direct_resampler_conditioner_cs::direct_resampler_conditioner_cs( | ||||
| } | ||||
|  | ||||
|  | ||||
| direct_resampler_conditioner_cs::~direct_resampler_conditioner_cs() | ||||
| { | ||||
| } | ||||
| direct_resampler_conditioner_cs::~direct_resampler_conditioner_cs() = default; | ||||
|  | ||||
|  | ||||
| void direct_resampler_conditioner_cs::forecast(int noutput_items, | ||||
|   | ||||
| @@ -149,9 +149,7 @@ SignalGenerator::SignalGenerator(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| SignalGenerator::~SignalGenerator() | ||||
| { | ||||
| } | ||||
| SignalGenerator::~SignalGenerator() = default; | ||||
|  | ||||
|  | ||||
| void SignalGenerator::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -251,9 +251,7 @@ FileSignalSource::FileSignalSource(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| FileSignalSource::~FileSignalSource() | ||||
| { | ||||
| } | ||||
| FileSignalSource::~FileSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void FileSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -83,9 +83,7 @@ LabsatSignalSource::LabsatSignalSource(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| LabsatSignalSource::~LabsatSignalSource() | ||||
| { | ||||
| } | ||||
| LabsatSignalSource::~LabsatSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void LabsatSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -177,9 +177,7 @@ NsrFileSignalSource::NsrFileSignalSource(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| NsrFileSignalSource::~NsrFileSignalSource() | ||||
| { | ||||
| } | ||||
| NsrFileSignalSource::~NsrFileSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void NsrFileSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -139,9 +139,7 @@ RtlTcpSignalSource::RtlTcpSignalSource(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| RtlTcpSignalSource::~RtlTcpSignalSource() | ||||
| { | ||||
| } | ||||
| RtlTcpSignalSource::~RtlTcpSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void RtlTcpSignalSource::MakeBlock() | ||||
|   | ||||
| @@ -176,9 +176,7 @@ SpirFileSignalSource::SpirFileSignalSource(ConfigurationInterface* configuration | ||||
| } | ||||
|  | ||||
|  | ||||
| SpirFileSignalSource::~SpirFileSignalSource() | ||||
| { | ||||
| } | ||||
| SpirFileSignalSource::~SpirFileSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void SpirFileSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -181,9 +181,7 @@ SpirGSS6450FileSignalSource::SpirGSS6450FileSignalSource(ConfigurationInterface* | ||||
| } | ||||
|  | ||||
|  | ||||
| SpirGSS6450FileSignalSource::~SpirGSS6450FileSignalSource() | ||||
| { | ||||
| } | ||||
| SpirGSS6450FileSignalSource::~SpirGSS6450FileSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void SpirGSS6450FileSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -246,9 +246,7 @@ TwoBitPackedFileSignalSource::TwoBitPackedFileSignalSource(ConfigurationInterfac | ||||
| } | ||||
|  | ||||
|  | ||||
| TwoBitPackedFileSignalSource::~TwoBitPackedFileSignalSource() | ||||
| { | ||||
| } | ||||
| TwoBitPackedFileSignalSource::~TwoBitPackedFileSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void TwoBitPackedFileSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -239,9 +239,7 @@ UhdSignalSource::UhdSignalSource(ConfigurationInterface* configuration, | ||||
| } | ||||
|  | ||||
|  | ||||
| UhdSignalSource::~UhdSignalSource() | ||||
| { | ||||
| } | ||||
| UhdSignalSource::~UhdSignalSource() = default; | ||||
|  | ||||
|  | ||||
| void UhdSignalSource::connect(gr::top_block_sptr top_block) | ||||
|   | ||||
| @@ -131,9 +131,7 @@ unpack_2bit_samples::unpack_2bit_samples(bool big_endian_bytes, | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_2bit_samples::~unpack_2bit_samples() | ||||
| { | ||||
| } | ||||
| unpack_2bit_samples::~unpack_2bit_samples() = default; | ||||
|  | ||||
|  | ||||
| int unpack_2bit_samples::work(int noutput_items, | ||||
|   | ||||
| @@ -56,9 +56,7 @@ unpack_byte_2bit_cpx_samples::unpack_byte_2bit_cpx_samples() : sync_interpolator | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_byte_2bit_cpx_samples::~unpack_byte_2bit_cpx_samples() | ||||
| { | ||||
| } | ||||
| unpack_byte_2bit_cpx_samples::~unpack_byte_2bit_cpx_samples() = default; | ||||
|  | ||||
|  | ||||
| int unpack_byte_2bit_cpx_samples::work(int noutput_items, | ||||
|   | ||||
| @@ -52,9 +52,7 @@ unpack_byte_2bit_samples::unpack_byte_2bit_samples() : sync_interpolator("unpack | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_byte_2bit_samples::~unpack_byte_2bit_samples() | ||||
| { | ||||
| } | ||||
| unpack_byte_2bit_samples::~unpack_byte_2bit_samples() = default; | ||||
|  | ||||
|  | ||||
| int unpack_byte_2bit_samples::work(int noutput_items, | ||||
|   | ||||
| @@ -47,9 +47,7 @@ unpack_byte_4bit_samples::unpack_byte_4bit_samples() : sync_interpolator("unpack | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_byte_4bit_samples::~unpack_byte_4bit_samples() | ||||
| { | ||||
| } | ||||
| unpack_byte_4bit_samples::~unpack_byte_4bit_samples() = default; | ||||
|  | ||||
|  | ||||
| int unpack_byte_4bit_samples::work(int noutput_items, | ||||
|   | ||||
| @@ -47,9 +47,7 @@ unpack_intspir_1bit_samples::unpack_intspir_1bit_samples() : sync_interpolator(" | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_intspir_1bit_samples::~unpack_intspir_1bit_samples() | ||||
| { | ||||
| } | ||||
| unpack_intspir_1bit_samples::~unpack_intspir_1bit_samples() = default; | ||||
|  | ||||
|  | ||||
| int unpack_intspir_1bit_samples::work(int noutput_items, | ||||
|   | ||||
| @@ -49,9 +49,8 @@ unpack_spir_gss6450_samples::unpack_spir_gss6450_samples(unsigned int adc_nbit) | ||||
| } | ||||
|  | ||||
|  | ||||
| unpack_spir_gss6450_samples::~unpack_spir_gss6450_samples() | ||||
| { | ||||
| } | ||||
| unpack_spir_gss6450_samples::~unpack_spir_gss6450_samples() = default; | ||||
|  | ||||
|  | ||||
| void unpack_spir_gss6450_samples::decode_4bits_word(uint32_t input_uint32, gr_complex* out, int adc_bits) | ||||
| { | ||||
|   | ||||
| @@ -69,9 +69,7 @@ GalileoE1BTelemetryDecoder::GalileoE1BTelemetryDecoder(ConfigurationInterface* c | ||||
| } | ||||
|  | ||||
|  | ||||
| GalileoE1BTelemetryDecoder::~GalileoE1BTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GalileoE1BTelemetryDecoder::~GalileoE1BTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GalileoE1BTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -72,9 +72,7 @@ GalileoE5aTelemetryDecoder::GalileoE5aTelemetryDecoder(ConfigurationInterface* c | ||||
| } | ||||
|  | ||||
|  | ||||
| GalileoE5aTelemetryDecoder::~GalileoE5aTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GalileoE5aTelemetryDecoder::~GalileoE5aTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GalileoE5aTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -68,9 +68,7 @@ GlonassL1CaTelemetryDecoder::GlonassL1CaTelemetryDecoder(ConfigurationInterface* | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL1CaTelemetryDecoder::~GlonassL1CaTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GlonassL1CaTelemetryDecoder::~GlonassL1CaTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL1CaTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -67,9 +67,7 @@ GlonassL2CaTelemetryDecoder::GlonassL2CaTelemetryDecoder(ConfigurationInterface* | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL2CaTelemetryDecoder::~GlonassL2CaTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GlonassL2CaTelemetryDecoder::~GlonassL2CaTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL2CaTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -68,9 +68,7 @@ GpsL1CaTelemetryDecoder::GpsL1CaTelemetryDecoder(ConfigurationInterface* configu | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaTelemetryDecoder::~GpsL1CaTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GpsL1CaTelemetryDecoder::~GpsL1CaTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GpsL1CaTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -68,9 +68,7 @@ GpsL2CTelemetryDecoder::GpsL2CTelemetryDecoder(ConfigurationInterface* configura | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL2CTelemetryDecoder::~GpsL2CTelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GpsL2CTelemetryDecoder::~GpsL2CTelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GpsL2CTelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -64,9 +64,7 @@ GpsL5TelemetryDecoder::GpsL5TelemetryDecoder(ConfigurationInterface* configurati | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL5TelemetryDecoder::~GpsL5TelemetryDecoder() | ||||
| { | ||||
| } | ||||
| GpsL5TelemetryDecoder::~GpsL5TelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void GpsL5TelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -66,9 +66,7 @@ SbasL1TelemetryDecoder::SbasL1TelemetryDecoder(ConfigurationInterface* configura | ||||
| } | ||||
|  | ||||
|  | ||||
| SbasL1TelemetryDecoder::~SbasL1TelemetryDecoder() | ||||
| { | ||||
| } | ||||
| SbasL1TelemetryDecoder::~SbasL1TelemetryDecoder() = default; | ||||
|  | ||||
|  | ||||
| void SbasL1TelemetryDecoder::set_satellite(const Gnss_Satellite& satellite) | ||||
|   | ||||
| @@ -110,9 +110,7 @@ sbas_l1_telemetry_decoder_cc::sample_aligner::sample_aligner() | ||||
| } | ||||
|  | ||||
|  | ||||
| sbas_l1_telemetry_decoder_cc::sample_aligner::~sample_aligner() | ||||
| { | ||||
| } | ||||
| sbas_l1_telemetry_decoder_cc::sample_aligner::~sample_aligner() = default; | ||||
|  | ||||
|  | ||||
| void sbas_l1_telemetry_decoder_cc::sample_aligner::reset() | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GalileoE1DllPllVemlTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GalileoE1DllPllVemlTracking::GalileoE1DllPllVemlTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -157,7 +154,10 @@ GalileoE1DllPllVemlTracking::GalileoE1DllPllVemlTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GalileoE1DllPllVemlTracking::~GalileoE1DllPllVemlTracking() | ||||
| GalileoE1DllPllVemlTracking::~GalileoE1DllPllVemlTracking() = default; | ||||
|  | ||||
|  | ||||
| void GalileoE1DllPllVemlTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -44,9 +44,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GalileoE1TcpConnectorTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GalileoE1TcpConnectorTracking::GalileoE1TcpConnectorTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -113,7 +110,10 @@ GalileoE1TcpConnectorTracking::GalileoE1TcpConnectorTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GalileoE1TcpConnectorTracking::~GalileoE1TcpConnectorTracking() | ||||
| GalileoE1TcpConnectorTracking::~GalileoE1TcpConnectorTracking() = default; | ||||
|  | ||||
|  | ||||
| void GalileoE1TcpConnectorTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GalileoE5aDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GalileoE5aDllPllTracking::GalileoE5aDllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -154,7 +151,10 @@ GalileoE5aDllPllTracking::GalileoE5aDllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GalileoE5aDllPllTracking::~GalileoE5aDllPllTracking() | ||||
| GalileoE5aDllPllTracking::~GalileoE5aDllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GalileoE5aDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -46,9 +46,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GlonassL1CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GlonassL1CaDllPllCAidTracking::GlonassL1CaDllPllCAidTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -135,7 +132,10 @@ GlonassL1CaDllPllCAidTracking::GlonassL1CaDllPllCAidTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL1CaDllPllCAidTracking::~GlonassL1CaDllPllCAidTracking() | ||||
| GlonassL1CaDllPllCAidTracking::~GlonassL1CaDllPllCAidTracking() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL1CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GlonassL1CaDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GlonassL1CaDllPllTracking::GlonassL1CaDllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -108,7 +105,10 @@ GlonassL1CaDllPllTracking::GlonassL1CaDllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL1CaDllPllTracking::~GlonassL1CaDllPllTracking() | ||||
| GlonassL1CaDllPllTracking::~GlonassL1CaDllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL1CaDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -44,9 +44,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GlonassL2CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GlonassL2CaDllPllCAidTracking::GlonassL2CaDllPllCAidTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -133,7 +130,10 @@ GlonassL2CaDllPllCAidTracking::GlonassL2CaDllPllCAidTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL2CaDllPllCAidTracking::~GlonassL2CaDllPllCAidTracking() | ||||
| GlonassL2CaDllPllCAidTracking::~GlonassL2CaDllPllCAidTracking() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL2CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -43,9 +43,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GlonassL2CaDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GlonassL2CaDllPllTracking::GlonassL2CaDllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -106,7 +103,10 @@ GlonassL2CaDllPllTracking::GlonassL2CaDllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GlonassL2CaDllPllTracking::~GlonassL2CaDllPllTracking() | ||||
| GlonassL2CaDllPllTracking::~GlonassL2CaDllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GlonassL2CaDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL1CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GpsL1CaDllPllCAidTracking::GpsL1CaDllPllCAidTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -134,7 +131,10 @@ GpsL1CaDllPllCAidTracking::GpsL1CaDllPllCAidTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaDllPllCAidTracking::~GpsL1CaDllPllCAidTracking() | ||||
| GpsL1CaDllPllCAidTracking::~GpsL1CaDllPllCAidTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL1CaDllPllCAidTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -45,10 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL1CaDllPllTracking::stop_tracking() | ||||
| { | ||||
|     tracking_->stop_tracking(); | ||||
| } | ||||
|  | ||||
| GpsL1CaDllPllTracking::GpsL1CaDllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -159,8 +155,12 @@ GpsL1CaDllPllTracking::GpsL1CaDllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaDllPllTracking::~GpsL1CaDllPllTracking() | ||||
| GpsL1CaDllPllTracking::~GpsL1CaDllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL1CaDllPllTracking::stop_tracking() | ||||
| { | ||||
|     tracking_->stop_tracking(); | ||||
| } | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -47,9 +47,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL1CaKfTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GpsL1CaKfTracking::GpsL1CaKfTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -121,7 +118,10 @@ GpsL1CaKfTracking::GpsL1CaKfTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaKfTracking::~GpsL1CaKfTracking() | ||||
| GpsL1CaKfTracking::~GpsL1CaKfTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL1CaKfTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -43,9 +43,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL1CaTcpConnectorTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GpsL1CaTcpConnectorTracking::GpsL1CaTcpConnectorTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -103,7 +100,10 @@ GpsL1CaTcpConnectorTracking::GpsL1CaTcpConnectorTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaTcpConnectorTracking::~GpsL1CaTcpConnectorTracking() | ||||
| GpsL1CaTcpConnectorTracking::~GpsL1CaTcpConnectorTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL1CaTcpConnectorTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL2MDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GpsL2MDllPllTracking::GpsL2MDllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -135,11 +132,13 @@ GpsL2MDllPllTracking::GpsL2MDllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL2MDllPllTracking::~GpsL2MDllPllTracking() | ||||
| GpsL2MDllPllTracking::~GpsL2MDllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL2MDllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|  | ||||
| void GpsL2MDllPllTracking::start_tracking() | ||||
| { | ||||
|     tracking_->start_tracking(); | ||||
|   | ||||
| @@ -45,9 +45,6 @@ | ||||
|  | ||||
| using google::LogMessage; | ||||
|  | ||||
| void GpsL5DllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
| GpsL5DllPllTracking::GpsL5DllPllTracking( | ||||
|     ConfigurationInterface* configuration, std::string role, | ||||
| @@ -154,7 +151,10 @@ GpsL5DllPllTracking::GpsL5DllPllTracking( | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL5DllPllTracking::~GpsL5DllPllTracking() | ||||
| GpsL5DllPllTracking::~GpsL5DllPllTracking() = default; | ||||
|  | ||||
|  | ||||
| void GpsL5DllPllTracking::stop_tracking() | ||||
| { | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -74,9 +74,7 @@ Bayesian_estimator::Bayesian_estimator(const arma::vec& mu_prior_0, int kappa_pr | ||||
|     Psi_est = Psi_prior; | ||||
| } | ||||
|  | ||||
| Bayesian_estimator::~Bayesian_estimator() | ||||
| { | ||||
| } | ||||
| Bayesian_estimator::~Bayesian_estimator() = default; | ||||
|  | ||||
| void Bayesian_estimator::init(const arma::mat& mu_prior_0, int kappa_prior_0, int nu_prior_0, const arma::mat& Psi_prior_0) | ||||
| { | ||||
|   | ||||
| @@ -35,14 +35,10 @@ | ||||
| #include <string> | ||||
|  | ||||
|  | ||||
| tcp_communication::tcp_communication() : tcp_socket_(io_service_) | ||||
| { | ||||
| } | ||||
| tcp_communication::tcp_communication() : tcp_socket_(io_service_) = default; | ||||
|  | ||||
|  | ||||
| tcp_communication::~tcp_communication() | ||||
| { | ||||
| } | ||||
| tcp_communication::~tcp_communication() = default; | ||||
|  | ||||
|  | ||||
| int tcp_communication::listen_tcp_connection(size_t d_port_, size_t d_port_ch0_) | ||||
|   | ||||
| @@ -37,4 +37,4 @@ tcp_packet_data::tcp_packet_data() | ||||
|     proc_pack_carrier_doppler_hz = 0; | ||||
| } | ||||
|  | ||||
| tcp_packet_data::~tcp_packet_data() {} | ||||
| tcp_packet_data::~tcp_packet_data() = default; | ||||
|   | ||||
| @@ -72,21 +72,23 @@ float Tracking_2nd_DLL_filter::get_code_nco(float DLL_discriminator) | ||||
|     return code_nco; | ||||
| } | ||||
|  | ||||
|  | ||||
| Tracking_2nd_DLL_filter::Tracking_2nd_DLL_filter(float pdi_code) | ||||
| { | ||||
|     d_pdi_code = pdi_code;  // Summation interval for code | ||||
|     d_dlldampingratio = 0.7; | ||||
| } | ||||
|  | ||||
|  | ||||
| Tracking_2nd_DLL_filter::Tracking_2nd_DLL_filter() | ||||
| { | ||||
|     d_pdi_code = 0.001;  // Summation interval for code | ||||
|     d_dlldampingratio = 0.7; | ||||
| } | ||||
|  | ||||
| Tracking_2nd_DLL_filter::~Tracking_2nd_DLL_filter() | ||||
| { | ||||
| } | ||||
|  | ||||
| Tracking_2nd_DLL_filter::~Tracking_2nd_DLL_filter() = default; | ||||
|  | ||||
|  | ||||
| void Tracking_2nd_DLL_filter::set_pdi(float pdi_code) | ||||
| { | ||||
|   | ||||
| @@ -77,6 +77,7 @@ float Tracking_2nd_PLL_filter::get_carrier_nco(float PLL_discriminator) | ||||
|     return carr_nco; | ||||
| } | ||||
|  | ||||
|  | ||||
| Tracking_2nd_PLL_filter::Tracking_2nd_PLL_filter(float pdi_carr) | ||||
| { | ||||
|     //--- PLL variables -------------------------------------------------------- | ||||
| @@ -94,9 +95,8 @@ Tracking_2nd_PLL_filter::Tracking_2nd_PLL_filter() | ||||
| } | ||||
|  | ||||
|  | ||||
| Tracking_2nd_PLL_filter::~Tracking_2nd_PLL_filter() | ||||
| { | ||||
| } | ||||
| Tracking_2nd_PLL_filter::~Tracking_2nd_PLL_filter() = default; | ||||
|  | ||||
|  | ||||
| void Tracking_2nd_PLL_filter::set_pdi(float pdi_carr) | ||||
| { | ||||
|   | ||||
| @@ -131,6 +131,4 @@ Tracking_FLL_PLL_filter::Tracking_FLL_PLL_filter() | ||||
| } | ||||
|  | ||||
|  | ||||
| Tracking_FLL_PLL_filter::~Tracking_FLL_PLL_filter() | ||||
| { | ||||
| } | ||||
| Tracking_FLL_PLL_filter::~Tracking_FLL_PLL_filter() = default; | ||||
|   | ||||
| @@ -52,7 +52,7 @@ | ||||
| class ConfigurationInterface | ||||
| { | ||||
| public: | ||||
|     virtual ~ConfigurationInterface() {} | ||||
|     virtual ~ConfigurationInterface() = default; | ||||
|     virtual std::string property(std::string property_name, std::string default_value) = 0; | ||||
|     virtual bool property(std::string property_name, bool default_value) = 0; | ||||
|     virtual int64_t property(std::string property_name, int64_t default_value) = 0; | ||||
|   | ||||
| @@ -53,7 +53,7 @@ | ||||
| class GNSSBlockInterface | ||||
| { | ||||
| public: | ||||
|     virtual ~GNSSBlockInterface() {} | ||||
|     virtual ~GNSSBlockInterface() = default; | ||||
|     virtual std::string role() = 0; | ||||
|     virtual std::string implementation() = 0; | ||||
|     virtual size_t item_size() = 0; | ||||
|   | ||||
| @@ -49,7 +49,7 @@ gnss_sdr_supl_client::gnss_sdr_supl_client() | ||||
| } | ||||
|  | ||||
|  | ||||
| gnss_sdr_supl_client::~gnss_sdr_supl_client() {} | ||||
| gnss_sdr_supl_client::~gnss_sdr_supl_client() = default; | ||||
|  | ||||
|  | ||||
| void gnss_sdr_supl_client::print_assistance() | ||||
|   | ||||
| @@ -47,9 +47,7 @@ TcpCmdInterface::TcpCmdInterface() | ||||
| } | ||||
|  | ||||
|  | ||||
| TcpCmdInterface::~TcpCmdInterface() | ||||
| { | ||||
| } | ||||
| TcpCmdInterface::~TcpCmdInterface() = default; | ||||
|  | ||||
|  | ||||
| void TcpCmdInterface::register_functions() | ||||
|   | ||||
| @@ -597,7 +597,7 @@ private: | ||||
|     class Rtcm_Listener | ||||
|     { | ||||
|     public: | ||||
|         virtual ~Rtcm_Listener() {} | ||||
|         virtual ~Rtcm_Listener() = default; | ||||
|         virtual void deliver(const Rtcm_Message& msg) = 0; | ||||
|     }; | ||||
|  | ||||
|   | ||||
| @@ -107,9 +107,7 @@ GpsL1CaPcpsAcquisitionTest_msg_rx::GpsL1CaPcpsAcquisitionTest_msg_rx() : gr::blo | ||||
| } | ||||
|  | ||||
|  | ||||
| GpsL1CaPcpsAcquisitionTest_msg_rx::~GpsL1CaPcpsAcquisitionTest_msg_rx() | ||||
| { | ||||
| } | ||||
| GpsL1CaPcpsAcquisitionTest_msg_rx::~GpsL1CaPcpsAcquisitionTest_msg_rx() = default; | ||||
|  | ||||
|  | ||||
| // ########################################################### | ||||
| @@ -127,9 +125,7 @@ protected: | ||||
|         doppler_step = 100; | ||||
|     } | ||||
|  | ||||
|     ~GpsL1CaPcpsAcquisitionTest() | ||||
|     { | ||||
|     } | ||||
|     ~GpsL1CaPcpsAcquisitionTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|     void plot_grid(); | ||||
|   | ||||
| @@ -80,9 +80,7 @@ DataTypeAdapter::DataTypeAdapter() | ||||
| } | ||||
|  | ||||
|  | ||||
| DataTypeAdapter::~DataTypeAdapter() | ||||
| { | ||||
| } | ||||
| DataTypeAdapter::~DataTypeAdapter() = default; | ||||
|  | ||||
|  | ||||
| int DataTypeAdapter::run_ishort_to_cshort_block() | ||||
|   | ||||
| @@ -63,9 +63,7 @@ protected: | ||||
|         item_size = sizeof(gr_complex); | ||||
|         config = std::make_shared<InMemoryConfiguration>(); | ||||
|     } | ||||
|     ~FirFilterTest() | ||||
|     { | ||||
|     } | ||||
|     ~FirFilterTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|     void configure_cbyte_cbyte(); | ||||
|   | ||||
| @@ -62,9 +62,7 @@ protected: | ||||
|         config = std::make_shared<InMemoryConfiguration>(); | ||||
|         nsamples = FLAGS_notch_filter_lite_test_nsamples; | ||||
|     } | ||||
|     ~NotchFilterLiteTest() | ||||
|     { | ||||
|     } | ||||
|     ~NotchFilterLiteTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|     void configure_gr_complex_gr_complex(); | ||||
|   | ||||
| @@ -62,9 +62,7 @@ protected: | ||||
|         config = std::make_shared<InMemoryConfiguration>(); | ||||
|         nsamples = FLAGS_notch_filter_test_nsamples; | ||||
|     } | ||||
|     ~NotchFilterTest() | ||||
|     { | ||||
|     } | ||||
|     ~NotchFilterTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|     void configure_gr_complex_gr_complex(); | ||||
|   | ||||
| @@ -62,9 +62,7 @@ protected: | ||||
|         config = std::make_shared<InMemoryConfiguration>(); | ||||
|         nsamples = FLAGS_pb_filter_test_nsamples; | ||||
|     } | ||||
|     ~PulseBlankingFilterTest() | ||||
|     { | ||||
|     } | ||||
|     ~PulseBlankingFilterTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|     void configure_gr_complex_gr_complex(); | ||||
|   | ||||
| @@ -234,6 +234,4 @@ acquisition_dump_reader::acquisition_dump_reader(const std::string& basename, | ||||
| } | ||||
|  | ||||
|  | ||||
| acquisition_dump_reader::~acquisition_dump_reader() | ||||
| { | ||||
| } | ||||
| acquisition_dump_reader::~acquisition_dump_reader() = default; | ||||
|   | ||||
| @@ -67,4 +67,4 @@ Acquisition_msg_rx::Acquisition_msg_rx() : gr::block("Acquisition_msg_rx", gr::i | ||||
| } | ||||
|  | ||||
|  | ||||
| Acquisition_msg_rx::~Acquisition_msg_rx() {} | ||||
| Acquisition_msg_rx::~Acquisition_msg_rx() = default; | ||||
|   | ||||
| @@ -65,9 +65,7 @@ protected: | ||||
|         gnss_synchro = Gnss_Synchro(); | ||||
|     } | ||||
|  | ||||
|     ~GalileoE1DllPllVemlTrackingInternalTest() | ||||
|     { | ||||
|     } | ||||
|     ~GalileoE1DllPllVemlTrackingInternalTest() = default; | ||||
|  | ||||
|     void init(); | ||||
|  | ||||
|   | ||||
| @@ -53,9 +53,9 @@ extern concurrent_map<Gps_Utc_Model> global_gps_utc_model_map; | ||||
| extern concurrent_map<Gps_Almanac> global_gps_almanac_map; | ||||
| extern concurrent_map<Gps_Acq_Assist> global_gps_acq_assist_map; | ||||
|  | ||||
| FrontEndCal::FrontEndCal() {} | ||||
| FrontEndCal::FrontEndCal() = default; | ||||
|  | ||||
| FrontEndCal::~FrontEndCal() {} | ||||
| FrontEndCal::~FrontEndCal() = default; | ||||
|  | ||||
| bool FrontEndCal::read_assistance_from_XML() | ||||
| { | ||||
|   | ||||
| @@ -144,7 +144,9 @@ FrontEndCal_msg_rx::FrontEndCal_msg_rx() : gr::block("FrontEndCal_msg_rx", gr::i | ||||
| } | ||||
|  | ||||
|  | ||||
| FrontEndCal_msg_rx::~FrontEndCal_msg_rx() {} | ||||
| FrontEndCal_msg_rx::~FrontEndCal_msg_rx() = default; | ||||
|  | ||||
|  | ||||
| void wait_message() | ||||
| { | ||||
|     while (!stop) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez