1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-29 21:44:14 -04:00

RxTx semantic move: renamed DeviceAPI to DeviceSourceAPI

This commit is contained in:
f4exb
2016-10-11 01:17:55 +02:00
parent 6b2e09ed10
commit 32595f81b9
106 changed files with 333 additions and 313 deletions
@@ -24,7 +24,7 @@
#include <iostream>
#include <stdint.h>
class DeviceAPI;
class DeviceSourceAPI;
class SDRdaemonFECUDPHandler;
class SDRdaemonFECInput : public DeviceSampleSource {
@@ -258,7 +258,7 @@ public:
{ }
};
SDRdaemonFECInput(const QTimer& masterTimer, DeviceAPI *deviceAPI);
SDRdaemonFECInput(const QTimer& masterTimer, DeviceSourceAPI *deviceAPI);
virtual ~SDRdaemonFECInput();
virtual bool init(const Message& message);
@@ -274,7 +274,7 @@ public:
virtual bool handleMessage(const Message& message);
private:
DeviceAPI *m_deviceAPI;
DeviceSourceAPI *m_deviceAPI;
QMutex m_mutex;
QString m_address;
quint16 m_port;