mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 15:34:57 -04:00
Renamed MIMOSampleSink to MIMOChannel and include in build
This commit is contained in:
@@ -26,7 +26,7 @@ class DeviceSampleSink;
|
||||
class DeviceSampleMIMO;
|
||||
class BasebandSampleSink;
|
||||
class BasebandSampleSource;
|
||||
class MIMOSampleSink;
|
||||
class MIMOChannel;
|
||||
class ChannelAPI;
|
||||
class ChannelWebAPIAdapter;
|
||||
class DeviceWebAPIAdapter;
|
||||
@@ -137,14 +137,14 @@ public:
|
||||
|
||||
virtual PluginInstanceGUI* createMIMOChannelGUI(
|
||||
DeviceUISet *deviceUISet,
|
||||
MIMOSampleSink *mimoChannel) const
|
||||
MIMOChannel *mimoChannel) const
|
||||
{
|
||||
(void) deviceUISet;
|
||||
(void) mimoChannel;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
virtual MIMOSampleSink* createMIMOChannelBS(DeviceAPI *deviceAPI) const
|
||||
virtual MIMOChannel* createMIMOChannelBS(DeviceAPI *deviceAPI) const
|
||||
{
|
||||
(void) deviceAPI;
|
||||
return nullptr;
|
||||
|
||||
@@ -263,7 +263,7 @@ void PluginManager::createMIMOChannelInstance(int channelPluginIndex, DeviceUISe
|
||||
if (channelPluginIndex < m_mimoChannelRegistrations.size())
|
||||
{
|
||||
PluginInterface *pluginInterface = m_mimoChannelRegistrations[channelPluginIndex].m_plugin;
|
||||
MIMOSampleSink *mimoChannel = pluginInterface->createMIMOChannelBS(deviceAPI);
|
||||
MIMOChannel *mimoChannel = pluginInterface->createMIMOChannelBS(deviceAPI);
|
||||
pluginInterface->createMIMOChannelGUI(deviceUISet, mimoChannel);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user