1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-22 07:38:59 -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
@@ -22,7 +22,7 @@
#include "hackrfsettings.h"
#include <QString>
class DeviceAPI;
class DeviceSourceAPI;
class HackRFThread;
class HackRFInput : public DeviceSampleSource {
@@ -65,7 +65,7 @@ public:
{ }
};
HackRFInput(DeviceAPI *deviceAPI);
HackRFInput(DeviceSourceAPI *deviceAPI);
virtual ~HackRFInput();
virtual bool init(const Message& message);
@@ -83,7 +83,7 @@ private:
hackrf_device *open_hackrf_from_sequence(int sequence);
void setCenterFrequency(quint64 freq);
DeviceAPI *m_deviceAPI;
DeviceSourceAPI *m_deviceAPI;
QMutex m_mutex;
HackRFSettings m_settings;
struct hackrf_device* m_dev;