1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 08:24:43 -04:00

Tx refactoring: added some missing method bodies

This commit is contained in:
f4exb
2019-11-15 02:20:03 +01:00
parent dd7dfae066
commit 34965d3935
4 changed files with 28 additions and 1 deletions
+19
View File
@@ -560,4 +560,23 @@ void UDPSource::networkManagerFinished(QNetworkReply *reply)
void UDPSource::setLevelMeter(QObject *levelMeter)
{
connect(m_basebandSource, SIGNAL(levelChanged(qreal, qreal, int)), levelMeter, SLOT(levelChanged(qreal, qreal, int)));
}
double UDPSource::getMagSq() const
{
return m_basebandSource->getMagSq();
}
double UDPSource::getInMagSq() const
{
return m_basebandSource->getInMagSq();
}
int32_t UDPSource::getBufferGauge() const
{
return m_basebandSource->getBufferGauge();
}
bool UDPSource::getSquelchOpen() const
{
return m_basebandSource->getSquelchOpen();
}