SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
Public Member Functions | Private Attributes | List of all members
SWGSDRangel::SWGRemoteInputSettings Class Reference

#include <SWGRemoteInputSettings.h>

+ Inheritance diagram for SWGSDRangel::SWGRemoteInputSettings:
+ Collaboration diagram for SWGSDRangel::SWGRemoteInputSettings:

Public Member Functions

 SWGRemoteInputSettings ()
 
 SWGRemoteInputSettings (QString *json)
 
virtual ~SWGRemoteInputSettings ()
 
void init ()
 
void cleanup ()
 
virtual QString asJson () override
 
virtual QJsonObject * asJsonObject () override
 
virtual void fromJsonObject (QJsonObject &json) override
 
virtual SWGRemoteInputSettingsfromJson (QString &jsonString) override
 
QString * getApiAddress ()
 
void setApiAddress (QString *api_address)
 
qint32 getApiPort ()
 
void setApiPort (qint32 api_port)
 
QString * getDataAddress ()
 
void setDataAddress (QString *data_address)
 
qint32 getDataPort ()
 
void setDataPort (qint32 data_port)
 
qint32 getDcBlock ()
 
void setDcBlock (qint32 dc_block)
 
qint32 getIqCorrection ()
 
void setIqCorrection (qint32 iq_correction)
 
QString * getFileRecordName ()
 
void setFileRecordName (QString *file_record_name)
 
qint32 getUseReverseApi ()
 
void setUseReverseApi (qint32 use_reverse_api)
 
QString * getReverseApiAddress ()
 
void setReverseApiAddress (QString *reverse_api_address)
 
qint32 getReverseApiPort ()
 
void setReverseApiPort (qint32 reverse_api_port)
 
qint32 getReverseApiDeviceIndex ()
 
void setReverseApiDeviceIndex (qint32 reverse_api_device_index)
 
virtual bool isSet () override
 
- Public Member Functions inherited from SWGSDRangel::SWGObject
virtual ~SWGObject ()
 

Private Attributes

QString * api_address
 
bool m_api_address_isSet
 
qint32 api_port
 
bool m_api_port_isSet
 
QString * data_address
 
bool m_data_address_isSet
 
qint32 data_port
 
bool m_data_port_isSet
 
qint32 dc_block
 
bool m_dc_block_isSet
 
qint32 iq_correction
 
bool m_iq_correction_isSet
 
QString * file_record_name
 
bool m_file_record_name_isSet
 
qint32 use_reverse_api
 
bool m_use_reverse_api_isSet
 
QString * reverse_api_address
 
bool m_reverse_api_address_isSet
 
qint32 reverse_api_port
 
bool m_reverse_api_port_isSet
 
qint32 reverse_api_device_index
 
bool m_reverse_api_device_index_isSet
 

Detailed Description

Definition at line 32 of file SWGRemoteInputSettings.h.

Constructor & Destructor Documentation

◆ SWGRemoteInputSettings() [1/2]

SWGSDRangel::SWGRemoteInputSettings::SWGRemoteInputSettings ( )

Definition at line 30 of file SWGRemoteInputSettings.cpp.

References api_address, api_port, data_address, data_port, dc_block, file_record_name, iq_correction, m_api_address_isSet, m_api_port_isSet, m_data_address_isSet, m_data_port_isSet, m_dc_block_isSet, m_file_record_name_isSet, m_iq_correction_isSet, m_reverse_api_address_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_device_index, reverse_api_port, and use_reverse_api.

30  {
31  api_address = nullptr;
32  m_api_address_isSet = false;
33  api_port = 0;
34  m_api_port_isSet = false;
35  data_address = nullptr;
36  m_data_address_isSet = false;
37  data_port = 0;
38  m_data_port_isSet = false;
39  dc_block = 0;
40  m_dc_block_isSet = false;
41  iq_correction = 0;
42  m_iq_correction_isSet = false;
43  file_record_name = nullptr;
45  use_reverse_api = 0;
47  reverse_api_address = nullptr;
49  reverse_api_port = 0;
53 }

◆ SWGRemoteInputSettings() [2/2]

SWGSDRangel::SWGRemoteInputSettings::SWGRemoteInputSettings ( QString *  json)

Definition at line 25 of file SWGRemoteInputSettings.cpp.

References fromJson(), and init().

25  {
26  init();
27  this->fromJson(*json);
28 }
virtual SWGRemoteInputSettings * fromJson(QString &jsonString) override
+ Here is the call graph for this function:

◆ ~SWGRemoteInputSettings()

SWGSDRangel::SWGRemoteInputSettings::~SWGRemoteInputSettings ( )
virtual

Definition at line 55 of file SWGRemoteInputSettings.cpp.

References cleanup().

55  {
56  this->cleanup();
57 }
+ Here is the call graph for this function:

Member Function Documentation

◆ asJson()

QString SWGSDRangel::SWGRemoteInputSettings::asJson ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 144 of file SWGRemoteInputSettings.cpp.

References asJsonObject().

145 {
146  QJsonObject* obj = this->asJsonObject();
147 
148  QJsonDocument doc(*obj);
149  QByteArray bytes = doc.toJson();
150  delete obj;
151  return QString(bytes);
152 }
virtual QJsonObject * asJsonObject() override
+ Here is the call graph for this function:

◆ asJsonObject()

QJsonObject * SWGSDRangel::SWGRemoteInputSettings::asJsonObject ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 155 of file SWGRemoteInputSettings.cpp.

References api_address, api_port, data_address, data_port, dc_block, file_record_name, iq_correction, m_api_port_isSet, m_data_port_isSet, m_dc_block_isSet, m_iq_correction_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_device_index, reverse_api_port, SWGSDRangel::toJsonValue(), and use_reverse_api.

Referenced by asJson().

155  {
156  QJsonObject* obj = new QJsonObject();
157  if(api_address != nullptr && *api_address != QString("")){
158  toJsonValue(QString("apiAddress"), api_address, obj, QString("QString"));
159  }
160  if(m_api_port_isSet){
161  obj->insert("apiPort", QJsonValue(api_port));
162  }
163  if(data_address != nullptr && *data_address != QString("")){
164  toJsonValue(QString("dataAddress"), data_address, obj, QString("QString"));
165  }
166  if(m_data_port_isSet){
167  obj->insert("dataPort", QJsonValue(data_port));
168  }
169  if(m_dc_block_isSet){
170  obj->insert("dcBlock", QJsonValue(dc_block));
171  }
173  obj->insert("iqCorrection", QJsonValue(iq_correction));
174  }
175  if(file_record_name != nullptr && *file_record_name != QString("")){
176  toJsonValue(QString("fileRecordName"), file_record_name, obj, QString("QString"));
177  }
179  obj->insert("useReverseAPI", QJsonValue(use_reverse_api));
180  }
181  if(reverse_api_address != nullptr && *reverse_api_address != QString("")){
182  toJsonValue(QString("reverseAPIAddress"), reverse_api_address, obj, QString("QString"));
183  }
185  obj->insert("reverseAPIPort", QJsonValue(reverse_api_port));
186  }
188  obj->insert("reverseAPIDeviceIndex", QJsonValue(reverse_api_device_index));
189  }
190 
191  return obj;
192 }
void toJsonValue(QString name, void *value, QJsonObject *output, QString type)
Definition: SWGHelpers.cpp:383
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cleanup()

void SWGSDRangel::SWGRemoteInputSettings::cleanup ( )

Definition at line 86 of file SWGRemoteInputSettings.cpp.

References api_address, data_address, file_record_name, and reverse_api_address.

Referenced by ~SWGRemoteInputSettings().

86  {
87  if(api_address != nullptr) {
88  delete api_address;
89  }
90 
91  if(data_address != nullptr) {
92  delete data_address;
93  }
94 
95 
96 
97  if(file_record_name != nullptr) {
98  delete file_record_name;
99  }
100 
101  if(reverse_api_address != nullptr) {
102  delete reverse_api_address;
103  }
104 
105 
106 }
+ Here is the caller graph for this function:

◆ fromJson()

SWGRemoteInputSettings * SWGSDRangel::SWGRemoteInputSettings::fromJson ( QString &  jsonString)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 109 of file SWGRemoteInputSettings.cpp.

References fromJsonObject().

Referenced by SWGRemoteInputSettings().

109  {
110  QByteArray array (json.toStdString().c_str());
111  QJsonDocument doc = QJsonDocument::fromJson(array);
112  QJsonObject jsonObject = doc.object();
113  this->fromJsonObject(jsonObject);
114  return this;
115 }
virtual void fromJsonObject(QJsonObject &json) override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fromJsonObject()

void SWGSDRangel::SWGRemoteInputSettings::fromJsonObject ( QJsonObject &  json)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 118 of file SWGRemoteInputSettings.cpp.

References api_address, api_port, data_address, data_port, dc_block, file_record_name, iq_correction, reverse_api_address, reverse_api_device_index, reverse_api_port, SWGSDRangel::setValue(), and use_reverse_api.

Referenced by fromJson(), and WebAPIRequestMapper::validateDeviceSettings().

118  {
119  ::SWGSDRangel::setValue(&api_address, pJson["apiAddress"], "QString", "QString");
120 
121  ::SWGSDRangel::setValue(&api_port, pJson["apiPort"], "qint32", "");
122 
123  ::SWGSDRangel::setValue(&data_address, pJson["dataAddress"], "QString", "QString");
124 
125  ::SWGSDRangel::setValue(&data_port, pJson["dataPort"], "qint32", "");
126 
127  ::SWGSDRangel::setValue(&dc_block, pJson["dcBlock"], "qint32", "");
128 
129  ::SWGSDRangel::setValue(&iq_correction, pJson["iqCorrection"], "qint32", "");
130 
131  ::SWGSDRangel::setValue(&file_record_name, pJson["fileRecordName"], "QString", "QString");
132 
133  ::SWGSDRangel::setValue(&use_reverse_api, pJson["useReverseAPI"], "qint32", "");
134 
135  ::SWGSDRangel::setValue(&reverse_api_address, pJson["reverseAPIAddress"], "QString", "QString");
136 
137  ::SWGSDRangel::setValue(&reverse_api_port, pJson["reverseAPIPort"], "qint32", "");
138 
139  ::SWGSDRangel::setValue(&reverse_api_device_index, pJson["reverseAPIDeviceIndex"], "qint32", "");
140 
141 }
void setValue(void *value, QJsonValue obj, QString type, QString complexType)
Definition: SWGHelpers.cpp:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getApiAddress()

QString * SWGSDRangel::SWGRemoteInputSettings::getApiAddress ( )

Definition at line 195 of file SWGRemoteInputSettings.cpp.

References api_address.

Referenced by RemoteInput::webapiSettingsPutPatch().

195  {
196  return api_address;
197 }
+ Here is the caller graph for this function:

◆ getApiPort()

qint32 SWGSDRangel::SWGRemoteInputSettings::getApiPort ( )

Definition at line 205 of file SWGRemoteInputSettings.cpp.

References api_port.

Referenced by RemoteInput::webapiSettingsPutPatch().

205  {
206  return api_port;
207 }
+ Here is the caller graph for this function:

◆ getDataAddress()

QString * SWGSDRangel::SWGRemoteInputSettings::getDataAddress ( )

Definition at line 215 of file SWGRemoteInputSettings.cpp.

References data_address.

Referenced by RemoteInput::webapiSettingsPutPatch().

215  {
216  return data_address;
217 }
+ Here is the caller graph for this function:

◆ getDataPort()

qint32 SWGSDRangel::SWGRemoteInputSettings::getDataPort ( )

Definition at line 225 of file SWGRemoteInputSettings.cpp.

References data_port.

Referenced by RemoteInput::webapiSettingsPutPatch().

225  {
226  return data_port;
227 }
+ Here is the caller graph for this function:

◆ getDcBlock()

qint32 SWGSDRangel::SWGRemoteInputSettings::getDcBlock ( )

Definition at line 235 of file SWGRemoteInputSettings.cpp.

References dc_block.

Referenced by RemoteInput::webapiSettingsPutPatch().

235  {
236  return dc_block;
237 }
+ Here is the caller graph for this function:

◆ getFileRecordName()

QString * SWGSDRangel::SWGRemoteInputSettings::getFileRecordName ( )

Definition at line 255 of file SWGRemoteInputSettings.cpp.

References file_record_name.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiSettingsPutPatch().

255  {
256  return file_record_name;
257 }
+ Here is the caller graph for this function:

◆ getIqCorrection()

qint32 SWGSDRangel::SWGRemoteInputSettings::getIqCorrection ( )

Definition at line 245 of file SWGRemoteInputSettings.cpp.

References iq_correction.

Referenced by RemoteInput::webapiSettingsPutPatch().

245  {
246  return iq_correction;
247 }
+ Here is the caller graph for this function:

◆ getReverseApiAddress()

QString * SWGSDRangel::SWGRemoteInputSettings::getReverseApiAddress ( )

Definition at line 275 of file SWGRemoteInputSettings.cpp.

References reverse_api_address.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiSettingsPutPatch().

275  {
276  return reverse_api_address;
277 }
+ Here is the caller graph for this function:

◆ getReverseApiDeviceIndex()

qint32 SWGSDRangel::SWGRemoteInputSettings::getReverseApiDeviceIndex ( )

Definition at line 295 of file SWGRemoteInputSettings.cpp.

References reverse_api_device_index.

Referenced by RemoteInput::webapiSettingsPutPatch().

+ Here is the caller graph for this function:

◆ getReverseApiPort()

qint32 SWGSDRangel::SWGRemoteInputSettings::getReverseApiPort ( )

Definition at line 285 of file SWGRemoteInputSettings.cpp.

References reverse_api_port.

Referenced by RemoteInput::webapiSettingsPutPatch().

285  {
286  return reverse_api_port;
287 }
+ Here is the caller graph for this function:

◆ getUseReverseApi()

qint32 SWGSDRangel::SWGRemoteInputSettings::getUseReverseApi ( )

Definition at line 265 of file SWGRemoteInputSettings.cpp.

References use_reverse_api.

Referenced by RemoteInput::webapiSettingsPutPatch().

265  {
266  return use_reverse_api;
267 }
+ Here is the caller graph for this function:

◆ init()

void SWGSDRangel::SWGRemoteInputSettings::init ( )

Definition at line 60 of file SWGRemoteInputSettings.cpp.

References api_address, api_port, data_address, data_port, dc_block, file_record_name, iq_correction, m_api_address_isSet, m_api_port_isSet, m_data_address_isSet, m_data_port_isSet, m_dc_block_isSet, m_file_record_name_isSet, m_iq_correction_isSet, m_reverse_api_address_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_device_index, reverse_api_port, and use_reverse_api.

Referenced by SWGRemoteInputSettings(), and RemoteInput::webapiSettingsGet().

60  {
61  api_address = new QString("");
62  m_api_address_isSet = false;
63  api_port = 0;
64  m_api_port_isSet = false;
65  data_address = new QString("");
66  m_data_address_isSet = false;
67  data_port = 0;
68  m_data_port_isSet = false;
69  dc_block = 0;
70  m_dc_block_isSet = false;
71  iq_correction = 0;
72  m_iq_correction_isSet = false;
73  file_record_name = new QString("");
75  use_reverse_api = 0;
77  reverse_api_address = new QString("");
79  reverse_api_port = 0;
83 }
+ Here is the caller graph for this function:

◆ isSet()

bool SWGSDRangel::SWGRemoteInputSettings::isSet ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 306 of file SWGRemoteInputSettings.cpp.

References api_address, data_address, file_record_name, m_api_port_isSet, m_data_port_isSet, m_dc_block_isSet, m_iq_correction_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_use_reverse_api_isSet, and reverse_api_address.

Referenced by SWGSDRangel::SWGDeviceSettings::asJsonObject(), SWGSDRangel::SWGDeviceSettings_2::asJsonObject(), SWGSDRangel::SWGDeviceSettings_2::isSet(), and SWGSDRangel::SWGDeviceSettings::isSet().

306  {
307  bool isObjectUpdated = false;
308  do{
309  if(api_address != nullptr && *api_address != QString("")){ isObjectUpdated = true; break;}
310  if(m_api_port_isSet){ isObjectUpdated = true; break;}
311  if(data_address != nullptr && *data_address != QString("")){ isObjectUpdated = true; break;}
312  if(m_data_port_isSet){ isObjectUpdated = true; break;}
313  if(m_dc_block_isSet){ isObjectUpdated = true; break;}
314  if(m_iq_correction_isSet){ isObjectUpdated = true; break;}
315  if(file_record_name != nullptr && *file_record_name != QString("")){ isObjectUpdated = true; break;}
316  if(m_use_reverse_api_isSet){ isObjectUpdated = true; break;}
317  if(reverse_api_address != nullptr && *reverse_api_address != QString("")){ isObjectUpdated = true; break;}
318  if(m_reverse_api_port_isSet){ isObjectUpdated = true; break;}
319  if(m_reverse_api_device_index_isSet){ isObjectUpdated = true; break;}
320  }while(false);
321  return isObjectUpdated;
322 }
+ Here is the caller graph for this function:

◆ setApiAddress()

void SWGSDRangel::SWGRemoteInputSettings::setApiAddress ( QString *  api_address)

Definition at line 199 of file SWGRemoteInputSettings.cpp.

References api_address, and m_api_address_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setApiPort()

void SWGSDRangel::SWGRemoteInputSettings::setApiPort ( qint32  api_port)

Definition at line 209 of file SWGRemoteInputSettings.cpp.

References api_port, and m_api_port_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setDataAddress()

void SWGSDRangel::SWGRemoteInputSettings::setDataAddress ( QString *  data_address)

Definition at line 219 of file SWGRemoteInputSettings.cpp.

References data_address, and m_data_address_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setDataPort()

void SWGSDRangel::SWGRemoteInputSettings::setDataPort ( qint32  data_port)

Definition at line 229 of file SWGRemoteInputSettings.cpp.

References data_port, and m_data_port_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setDcBlock()

void SWGSDRangel::SWGRemoteInputSettings::setDcBlock ( qint32  dc_block)

Definition at line 239 of file SWGRemoteInputSettings.cpp.

References dc_block, and m_dc_block_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setFileRecordName()

void SWGSDRangel::SWGRemoteInputSettings::setFileRecordName ( QString *  file_record_name)

◆ setIqCorrection()

void SWGSDRangel::SWGRemoteInputSettings::setIqCorrection ( qint32  iq_correction)

Definition at line 249 of file SWGRemoteInputSettings.cpp.

References iq_correction, and m_iq_correction_isSet.

Referenced by RemoteInput::webapiFormatDeviceSettings(), and RemoteInput::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setReverseApiAddress()

void SWGSDRangel::SWGRemoteInputSettings::setReverseApiAddress ( QString *  reverse_api_address)

Definition at line 279 of file SWGRemoteInputSettings.cpp.

References m_reverse_api_address_isSet, and reverse_api_address.

Referenced by RemoteInput::webapiFormatDeviceSettings().

+ Here is the caller graph for this function:

◆ setReverseApiDeviceIndex()

void SWGSDRangel::SWGRemoteInputSettings::setReverseApiDeviceIndex ( qint32  reverse_api_device_index)

◆ setReverseApiPort()

void SWGSDRangel::SWGRemoteInputSettings::setReverseApiPort ( qint32  reverse_api_port)

Definition at line 289 of file SWGRemoteInputSettings.cpp.

References m_reverse_api_port_isSet, and reverse_api_port.

Referenced by RemoteInput::webapiFormatDeviceSettings().

+ Here is the caller graph for this function:

◆ setUseReverseApi()

void SWGSDRangel::SWGRemoteInputSettings::setUseReverseApi ( qint32  use_reverse_api)

Definition at line 269 of file SWGRemoteInputSettings.cpp.

References m_use_reverse_api_isSet, and use_reverse_api.

Referenced by RemoteInput::webapiFormatDeviceSettings().

+ Here is the caller graph for this function:

Member Data Documentation

◆ api_address

QString* SWGSDRangel::SWGRemoteInputSettings::api_address
private

◆ api_port

qint32 SWGSDRangel::SWGRemoteInputSettings::api_port
private

◆ data_address

QString* SWGSDRangel::SWGRemoteInputSettings::data_address
private

◆ data_port

qint32 SWGSDRangel::SWGRemoteInputSettings::data_port
private

◆ dc_block

qint32 SWGSDRangel::SWGRemoteInputSettings::dc_block
private

◆ file_record_name

QString* SWGSDRangel::SWGRemoteInputSettings::file_record_name
private

◆ iq_correction

qint32 SWGSDRangel::SWGRemoteInputSettings::iq_correction
private

◆ m_api_address_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_api_address_isSet
private

Definition at line 83 of file SWGRemoteInputSettings.h.

Referenced by init(), setApiAddress(), and SWGRemoteInputSettings().

◆ m_api_port_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_api_port_isSet
private

◆ m_data_address_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_data_address_isSet
private

Definition at line 89 of file SWGRemoteInputSettings.h.

Referenced by init(), setDataAddress(), and SWGRemoteInputSettings().

◆ m_data_port_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_data_port_isSet
private

◆ m_dc_block_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_dc_block_isSet
private

◆ m_file_record_name_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_file_record_name_isSet
private

Definition at line 101 of file SWGRemoteInputSettings.h.

Referenced by init(), setFileRecordName(), and SWGRemoteInputSettings().

◆ m_iq_correction_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_iq_correction_isSet
private

◆ m_reverse_api_address_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_reverse_api_address_isSet
private

Definition at line 107 of file SWGRemoteInputSettings.h.

Referenced by init(), setReverseApiAddress(), and SWGRemoteInputSettings().

◆ m_reverse_api_device_index_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_reverse_api_device_index_isSet
private

◆ m_reverse_api_port_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_reverse_api_port_isSet
private

◆ m_use_reverse_api_isSet

bool SWGSDRangel::SWGRemoteInputSettings::m_use_reverse_api_isSet
private

◆ reverse_api_address

QString* SWGSDRangel::SWGRemoteInputSettings::reverse_api_address
private

◆ reverse_api_device_index

qint32 SWGSDRangel::SWGRemoteInputSettings::reverse_api_device_index
private

◆ reverse_api_port

qint32 SWGSDRangel::SWGRemoteInputSettings::reverse_api_port
private

◆ use_reverse_api

qint32 SWGSDRangel::SWGRemoteInputSettings::use_reverse_api
private

The documentation for this class was generated from the following files: