1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 07:23:38 -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
+3 -3
View File
@@ -23,7 +23,7 @@
#include <libbladeRF.h>
#include <QString>
class DeviceAPI;
class DeviceSourceAPI;
class BladerfThread;
class BladerfInput : public DeviceSampleSource {
@@ -65,7 +65,7 @@ public:
{ }
};
BladerfInput(DeviceAPI *deviceAPI);
BladerfInput(DeviceSourceAPI *deviceAPI);
virtual ~BladerfInput();
virtual bool init(const Message& message);
@@ -83,7 +83,7 @@ private:
bladerf_lna_gain getLnaGain(int lnaGain);
struct bladerf *open_bladerf_from_serial(const char *serial);
DeviceAPI *m_deviceAPI;
DeviceSourceAPI *m_deviceAPI;
QMutex m_mutex;
BladeRFSettings m_settings;
struct bladerf* m_dev;