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

RxTx semantic move: renamed ThreadedSampleSink to ThreadedBasebandSampleSink

This commit is contained in:
f4exb
2016-10-03 15:55:16 +02:00
parent d1fc02e303
commit dce0ace4ef
31 changed files with 190 additions and 182 deletions
+2 -2
View File
@@ -52,12 +52,12 @@ void DeviceAPI::removeSink(BasebandSampleSink* sink)
m_deviceEngine->removeSink(sink);
}
void DeviceAPI::addThreadedSink(ThreadedSampleSink* sink)
void DeviceAPI::addThreadedSink(ThreadedBasebandSampleSink* sink)
{
m_deviceEngine->addThreadedSink(sink);
}
void DeviceAPI::removeThreadedSink(ThreadedSampleSink* sink)
void DeviceAPI::removeThreadedSink(ThreadedBasebandSampleSink* sink)
{
m_deviceEngine->removeThreadedSink(sink);
}