1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

RxTx semantic move: renamed SampleSink to BasebandSampleSink

This commit is contained in:
f4exb
2016-10-02 22:29:04 +02:00
parent 20c6fb19cc
commit 78513854ac
38 changed files with 103 additions and 103 deletions
+2 -2
View File
@@ -42,12 +42,12 @@ DeviceAPI::~DeviceAPI()
{
}
void DeviceAPI::addSink(SampleSink *sink)
void DeviceAPI::addSink(BasebandSampleSink *sink)
{
m_deviceEngine->addSink(sink);
}
void DeviceAPI::removeSink(SampleSink* sink)
void DeviceAPI::removeSink(BasebandSampleSink* sink)
{
m_deviceEngine->removeSink(sink);
}