1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04:00

Add possibility to return the core device interface pointer from the device source API

This commit is contained in:
f4exb
2017-09-05 13:57:49 +02:00
parent b957c35493
commit 868f96ea96
3 changed files with 8 additions and 1 deletions
+5
View File
@@ -70,6 +70,11 @@ void DeviceSourceAPI::setSource(DeviceSampleSource* source)
m_deviceSourceEngine->setSource(source);
}
DeviceSampleSource *DeviceSourceAPI::getSource()
{
return m_deviceSourceEngine->getSource();
}
bool DeviceSourceAPI::initAcquisition()
{
return m_deviceSourceEngine->initAcquisition();