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:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user