RigCtl Server: REST API generated code

This commit is contained in:
f4exb 2020-09-28 19:36:51 +02:00
parent ea2fee71f9
commit 882e580d44
9 changed files with 657 additions and 6 deletions

View File

@ -3095,6 +3095,9 @@ margin-bottom: 20px;
},
"SimplePTTSettings" : {
"$ref" : "#/definitions/SimplePTTSettings"
},
"RigCtlServerSettings" : {
"$ref" : "#/definitions/RigCtlServerSettings"
}
},
"description" : "Base feature settings. Only the feature settings corresponding to the feature specified in the featureType field is or should be present."
@ -5575,6 +5578,49 @@ margin-bottom: 20px;
}
},
"description" : "Remote channel source settings"
};
defs.RigCtlServerSettings = {
"properties" : {
"enabled" : {
"type" : "integer",
"description" : "Enable RigCtl server\n * 1 - enabled\n * 0 - disabled\n"
},
"rigCtlPort" : {
"type" : "integer"
},
"maxFrequencyOffset" : {
"type" : "integer"
},
"deviceIndex" : {
"type" : "integer"
},
"channelIndex" : {
"type" : "integer"
},
"title" : {
"type" : "string"
},
"rgbColor" : {
"type" : "integer"
},
"useReverseAPI" : {
"type" : "integer",
"description" : "Synchronize with reverse API\n * 1 - yes\n * 0 - no\n"
},
"reverseAPIAddress" : {
"type" : "string"
},
"reverseAPIPort" : {
"type" : "integer"
},
"reverseAPIDeviceIndex" : {
"type" : "integer"
},
"reverseAPIChannelIndex" : {
"type" : "integer"
}
},
"description" : "RigCtl server settings"
};
defs.RtlSdrSettings = {
"properties" : {
@ -38945,11 +38991,7 @@ except ApiException as e:
</div>
<div id="generator">
<div class="content">
<<<<<<< ours
Generated 2020-09-28T13:50:10.100+02:00
=======
Generated 2020-09-23T23:57:22.462+02:00
>>>>>>> theirs
Generated 2020-09-28T19:24:51.767+02:00
</div>
</div>
</div>

View File

@ -15,3 +15,5 @@ FeatureSettings:
type: integer
SimplePTTSettings:
$ref: "/doc/swagger/include/SimplePTT.yaml#/SimplePTTSettings"
RigCtlServerSettings:
$ref: "/doc/swagger/include/RigCtlServer.yaml#/RigCtlServerSettings"

View File

@ -0,0 +1,35 @@
RigCtlServerSettings:
description: "RigCtl server settings"
properties:
enabled:
type: integer
description: >
Enable RigCtl server
* 1 - enabled
* 0 - disabled
rigCtlPort:
type: integer
maxFrequencyOffset:
type: integer
deviceIndex:
type: integer
channelIndex:
type: integer
title:
type: string
rgbColor:
type: integer
useReverseAPI:
type: integer
description: >
Synchronize with reverse API
* 1 - yes
* 0 - no
reverseAPIAddress:
type: string
reverseAPIPort:
type: integer
reverseAPIDeviceIndex:
type: integer
reverseAPIChannelIndex:
type: integer

View File

@ -3095,6 +3095,9 @@ margin-bottom: 20px;
},
"SimplePTTSettings" : {
"$ref" : "#/definitions/SimplePTTSettings"
},
"RigCtlServerSettings" : {
"$ref" : "#/definitions/RigCtlServerSettings"
}
},
"description" : "Base feature settings. Only the feature settings corresponding to the feature specified in the featureType field is or should be present."
@ -5575,6 +5578,49 @@ margin-bottom: 20px;
}
},
"description" : "Remote channel source settings"
};
defs.RigCtlServerSettings = {
"properties" : {
"enabled" : {
"type" : "integer",
"description" : "Enable RigCtl server\n * 1 - enabled\n * 0 - disabled\n"
},
"rigCtlPort" : {
"type" : "integer"
},
"maxFrequencyOffset" : {
"type" : "integer"
},
"deviceIndex" : {
"type" : "integer"
},
"channelIndex" : {
"type" : "integer"
},
"title" : {
"type" : "string"
},
"rgbColor" : {
"type" : "integer"
},
"useReverseAPI" : {
"type" : "integer",
"description" : "Synchronize with reverse API\n * 1 - yes\n * 0 - no\n"
},
"reverseAPIAddress" : {
"type" : "string"
},
"reverseAPIPort" : {
"type" : "integer"
},
"reverseAPIDeviceIndex" : {
"type" : "integer"
},
"reverseAPIChannelIndex" : {
"type" : "integer"
}
},
"description" : "RigCtl server settings"
};
defs.RtlSdrSettings = {
"properties" : {
@ -38945,7 +38991,7 @@ except ApiException as e:
</div>
<div id="generator">
<div class="content">
Generated 2020-09-28T13:50:10.100+02:00
Generated 2020-09-28T19:24:51.767+02:00
</div>
</div>
</div>

View File

@ -36,6 +36,8 @@ SWGFeatureSettings::SWGFeatureSettings() {
m_originator_feature_index_isSet = false;
simple_ptt_settings = nullptr;
m_simple_ptt_settings_isSet = false;
rig_ctl_server_settings = nullptr;
m_rig_ctl_server_settings_isSet = false;
}
SWGFeatureSettings::~SWGFeatureSettings() {
@ -52,6 +54,8 @@ SWGFeatureSettings::init() {
m_originator_feature_index_isSet = false;
simple_ptt_settings = new SWGSimplePTTSettings();
m_simple_ptt_settings_isSet = false;
rig_ctl_server_settings = new SWGRigCtlServerSettings();
m_rig_ctl_server_settings_isSet = false;
}
void
@ -64,6 +68,9 @@ SWGFeatureSettings::cleanup() {
if(simple_ptt_settings != nullptr) {
delete simple_ptt_settings;
}
if(rig_ctl_server_settings != nullptr) {
delete rig_ctl_server_settings;
}
}
SWGFeatureSettings*
@ -85,6 +92,8 @@ SWGFeatureSettings::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&simple_ptt_settings, pJson["SimplePTTSettings"], "SWGSimplePTTSettings", "SWGSimplePTTSettings");
::SWGSDRangel::setValue(&rig_ctl_server_settings, pJson["RigCtlServerSettings"], "SWGRigCtlServerSettings", "SWGRigCtlServerSettings");
}
QString
@ -113,6 +122,9 @@ SWGFeatureSettings::asJsonObject() {
if((simple_ptt_settings != nullptr) && (simple_ptt_settings->isSet())){
toJsonValue(QString("SimplePTTSettings"), simple_ptt_settings, obj, QString("SWGSimplePTTSettings"));
}
if((rig_ctl_server_settings != nullptr) && (rig_ctl_server_settings->isSet())){
toJsonValue(QString("RigCtlServerSettings"), rig_ctl_server_settings, obj, QString("SWGRigCtlServerSettings"));
}
return obj;
}
@ -157,6 +169,16 @@ SWGFeatureSettings::setSimplePttSettings(SWGSimplePTTSettings* simple_ptt_settin
this->m_simple_ptt_settings_isSet = true;
}
SWGRigCtlServerSettings*
SWGFeatureSettings::getRigCtlServerSettings() {
return rig_ctl_server_settings;
}
void
SWGFeatureSettings::setRigCtlServerSettings(SWGRigCtlServerSettings* rig_ctl_server_settings) {
this->rig_ctl_server_settings = rig_ctl_server_settings;
this->m_rig_ctl_server_settings_isSet = true;
}
bool
SWGFeatureSettings::isSet(){
@ -174,6 +196,9 @@ SWGFeatureSettings::isSet(){
if(simple_ptt_settings && simple_ptt_settings->isSet()){
isObjectUpdated = true; break;
}
if(rig_ctl_server_settings && rig_ctl_server_settings->isSet()){
isObjectUpdated = true; break;
}
}while(false);
return isObjectUpdated;
}

View File

@ -22,6 +22,7 @@
#include <QJsonObject>
#include "SWGRigCtlServerSettings.h"
#include "SWGSimplePTTSettings.h"
#include <QString>
@ -55,6 +56,9 @@ public:
SWGSimplePTTSettings* getSimplePttSettings();
void setSimplePttSettings(SWGSimplePTTSettings* simple_ptt_settings);
SWGRigCtlServerSettings* getRigCtlServerSettings();
void setRigCtlServerSettings(SWGRigCtlServerSettings* rig_ctl_server_settings);
virtual bool isSet() override;
@ -71,6 +75,9 @@ private:
SWGSimplePTTSettings* simple_ptt_settings;
bool m_simple_ptt_settings_isSet;
SWGRigCtlServerSettings* rig_ctl_server_settings;
bool m_rig_ctl_server_settings_isSet;
};
}

View File

@ -131,6 +131,7 @@
#include "SWGRemoteSinkSettings.h"
#include "SWGRemoteSourceReport.h"
#include "SWGRemoteSourceSettings.h"
#include "SWGRigCtlServerSettings.h"
#include "SWGRtlSdrSettings.h"
#include "SWGSDRPlaySettings.h"
#include "SWGSSBDemodReport.h"
@ -512,6 +513,9 @@ namespace SWGSDRangel {
if(QString("SWGRemoteSourceSettings").compare(type) == 0) {
return new SWGRemoteSourceSettings();
}
if(QString("SWGRigCtlServerSettings").compare(type) == 0) {
return new SWGRigCtlServerSettings();
}
if(QString("SWGRtlSdrSettings").compare(type) == 0) {
return new SWGRtlSdrSettings();
}

View File

@ -0,0 +1,365 @@
/**
* SDRangel
* This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time ---
*
* OpenAPI spec version: 4.15.0
* Contact: f4exb06@gmail.com
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
#include "SWGRigCtlServerSettings.h"
#include "SWGHelpers.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QObject>
#include <QDebug>
namespace SWGSDRangel {
SWGRigCtlServerSettings::SWGRigCtlServerSettings(QString* json) {
init();
this->fromJson(*json);
}
SWGRigCtlServerSettings::SWGRigCtlServerSettings() {
enabled = 0;
m_enabled_isSet = false;
rig_ctl_port = 0;
m_rig_ctl_port_isSet = false;
max_frequency_offset = 0;
m_max_frequency_offset_isSet = false;
device_index = 0;
m_device_index_isSet = false;
channel_index = 0;
m_channel_index_isSet = false;
title = nullptr;
m_title_isSet = false;
rgb_color = 0;
m_rgb_color_isSet = false;
use_reverse_api = 0;
m_use_reverse_api_isSet = false;
reverse_api_address = nullptr;
m_reverse_api_address_isSet = false;
reverse_api_port = 0;
m_reverse_api_port_isSet = false;
reverse_api_device_index = 0;
m_reverse_api_device_index_isSet = false;
reverse_api_channel_index = 0;
m_reverse_api_channel_index_isSet = false;
}
SWGRigCtlServerSettings::~SWGRigCtlServerSettings() {
this->cleanup();
}
void
SWGRigCtlServerSettings::init() {
enabled = 0;
m_enabled_isSet = false;
rig_ctl_port = 0;
m_rig_ctl_port_isSet = false;
max_frequency_offset = 0;
m_max_frequency_offset_isSet = false;
device_index = 0;
m_device_index_isSet = false;
channel_index = 0;
m_channel_index_isSet = false;
title = new QString("");
m_title_isSet = false;
rgb_color = 0;
m_rgb_color_isSet = false;
use_reverse_api = 0;
m_use_reverse_api_isSet = false;
reverse_api_address = new QString("");
m_reverse_api_address_isSet = false;
reverse_api_port = 0;
m_reverse_api_port_isSet = false;
reverse_api_device_index = 0;
m_reverse_api_device_index_isSet = false;
reverse_api_channel_index = 0;
m_reverse_api_channel_index_isSet = false;
}
void
SWGRigCtlServerSettings::cleanup() {
if(title != nullptr) {
delete title;
}
if(reverse_api_address != nullptr) {
delete reverse_api_address;
}
}
SWGRigCtlServerSettings*
SWGRigCtlServerSettings::fromJson(QString &json) {
QByteArray array (json.toStdString().c_str());
QJsonDocument doc = QJsonDocument::fromJson(array);
QJsonObject jsonObject = doc.object();
this->fromJsonObject(jsonObject);
return this;
}
void
SWGRigCtlServerSettings::fromJsonObject(QJsonObject &pJson) {
::SWGSDRangel::setValue(&enabled, pJson["enabled"], "qint32", "");
::SWGSDRangel::setValue(&rig_ctl_port, pJson["rigCtlPort"], "qint32", "");
::SWGSDRangel::setValue(&max_frequency_offset, pJson["maxFrequencyOffset"], "qint32", "");
::SWGSDRangel::setValue(&device_index, pJson["deviceIndex"], "qint32", "");
::SWGSDRangel::setValue(&channel_index, pJson["channelIndex"], "qint32", "");
::SWGSDRangel::setValue(&title, pJson["title"], "QString", "QString");
::SWGSDRangel::setValue(&rgb_color, pJson["rgbColor"], "qint32", "");
::SWGSDRangel::setValue(&use_reverse_api, pJson["useReverseAPI"], "qint32", "");
::SWGSDRangel::setValue(&reverse_api_address, pJson["reverseAPIAddress"], "QString", "QString");
::SWGSDRangel::setValue(&reverse_api_port, pJson["reverseAPIPort"], "qint32", "");
::SWGSDRangel::setValue(&reverse_api_device_index, pJson["reverseAPIDeviceIndex"], "qint32", "");
::SWGSDRangel::setValue(&reverse_api_channel_index, pJson["reverseAPIChannelIndex"], "qint32", "");
}
QString
SWGRigCtlServerSettings::asJson ()
{
QJsonObject* obj = this->asJsonObject();
QJsonDocument doc(*obj);
QByteArray bytes = doc.toJson();
delete obj;
return QString(bytes);
}
QJsonObject*
SWGRigCtlServerSettings::asJsonObject() {
QJsonObject* obj = new QJsonObject();
if(m_enabled_isSet){
obj->insert("enabled", QJsonValue(enabled));
}
if(m_rig_ctl_port_isSet){
obj->insert("rigCtlPort", QJsonValue(rig_ctl_port));
}
if(m_max_frequency_offset_isSet){
obj->insert("maxFrequencyOffset", QJsonValue(max_frequency_offset));
}
if(m_device_index_isSet){
obj->insert("deviceIndex", QJsonValue(device_index));
}
if(m_channel_index_isSet){
obj->insert("channelIndex", QJsonValue(channel_index));
}
if(title != nullptr && *title != QString("")){
toJsonValue(QString("title"), title, obj, QString("QString"));
}
if(m_rgb_color_isSet){
obj->insert("rgbColor", QJsonValue(rgb_color));
}
if(m_use_reverse_api_isSet){
obj->insert("useReverseAPI", QJsonValue(use_reverse_api));
}
if(reverse_api_address != nullptr && *reverse_api_address != QString("")){
toJsonValue(QString("reverseAPIAddress"), reverse_api_address, obj, QString("QString"));
}
if(m_reverse_api_port_isSet){
obj->insert("reverseAPIPort", QJsonValue(reverse_api_port));
}
if(m_reverse_api_device_index_isSet){
obj->insert("reverseAPIDeviceIndex", QJsonValue(reverse_api_device_index));
}
if(m_reverse_api_channel_index_isSet){
obj->insert("reverseAPIChannelIndex", QJsonValue(reverse_api_channel_index));
}
return obj;
}
qint32
SWGRigCtlServerSettings::getEnabled() {
return enabled;
}
void
SWGRigCtlServerSettings::setEnabled(qint32 enabled) {
this->enabled = enabled;
this->m_enabled_isSet = true;
}
qint32
SWGRigCtlServerSettings::getRigCtlPort() {
return rig_ctl_port;
}
void
SWGRigCtlServerSettings::setRigCtlPort(qint32 rig_ctl_port) {
this->rig_ctl_port = rig_ctl_port;
this->m_rig_ctl_port_isSet = true;
}
qint32
SWGRigCtlServerSettings::getMaxFrequencyOffset() {
return max_frequency_offset;
}
void
SWGRigCtlServerSettings::setMaxFrequencyOffset(qint32 max_frequency_offset) {
this->max_frequency_offset = max_frequency_offset;
this->m_max_frequency_offset_isSet = true;
}
qint32
SWGRigCtlServerSettings::getDeviceIndex() {
return device_index;
}
void
SWGRigCtlServerSettings::setDeviceIndex(qint32 device_index) {
this->device_index = device_index;
this->m_device_index_isSet = true;
}
qint32
SWGRigCtlServerSettings::getChannelIndex() {
return channel_index;
}
void
SWGRigCtlServerSettings::setChannelIndex(qint32 channel_index) {
this->channel_index = channel_index;
this->m_channel_index_isSet = true;
}
QString*
SWGRigCtlServerSettings::getTitle() {
return title;
}
void
SWGRigCtlServerSettings::setTitle(QString* title) {
this->title = title;
this->m_title_isSet = true;
}
qint32
SWGRigCtlServerSettings::getRgbColor() {
return rgb_color;
}
void
SWGRigCtlServerSettings::setRgbColor(qint32 rgb_color) {
this->rgb_color = rgb_color;
this->m_rgb_color_isSet = true;
}
qint32
SWGRigCtlServerSettings::getUseReverseApi() {
return use_reverse_api;
}
void
SWGRigCtlServerSettings::setUseReverseApi(qint32 use_reverse_api) {
this->use_reverse_api = use_reverse_api;
this->m_use_reverse_api_isSet = true;
}
QString*
SWGRigCtlServerSettings::getReverseApiAddress() {
return reverse_api_address;
}
void
SWGRigCtlServerSettings::setReverseApiAddress(QString* reverse_api_address) {
this->reverse_api_address = reverse_api_address;
this->m_reverse_api_address_isSet = true;
}
qint32
SWGRigCtlServerSettings::getReverseApiPort() {
return reverse_api_port;
}
void
SWGRigCtlServerSettings::setReverseApiPort(qint32 reverse_api_port) {
this->reverse_api_port = reverse_api_port;
this->m_reverse_api_port_isSet = true;
}
qint32
SWGRigCtlServerSettings::getReverseApiDeviceIndex() {
return reverse_api_device_index;
}
void
SWGRigCtlServerSettings::setReverseApiDeviceIndex(qint32 reverse_api_device_index) {
this->reverse_api_device_index = reverse_api_device_index;
this->m_reverse_api_device_index_isSet = true;
}
qint32
SWGRigCtlServerSettings::getReverseApiChannelIndex() {
return reverse_api_channel_index;
}
void
SWGRigCtlServerSettings::setReverseApiChannelIndex(qint32 reverse_api_channel_index) {
this->reverse_api_channel_index = reverse_api_channel_index;
this->m_reverse_api_channel_index_isSet = true;
}
bool
SWGRigCtlServerSettings::isSet(){
bool isObjectUpdated = false;
do{
if(m_enabled_isSet){
isObjectUpdated = true; break;
}
if(m_rig_ctl_port_isSet){
isObjectUpdated = true; break;
}
if(m_max_frequency_offset_isSet){
isObjectUpdated = true; break;
}
if(m_device_index_isSet){
isObjectUpdated = true; break;
}
if(m_channel_index_isSet){
isObjectUpdated = true; break;
}
if(title && *title != QString("")){
isObjectUpdated = true; break;
}
if(m_rgb_color_isSet){
isObjectUpdated = true; break;
}
if(m_use_reverse_api_isSet){
isObjectUpdated = true; break;
}
if(reverse_api_address && *reverse_api_address != QString("")){
isObjectUpdated = true; break;
}
if(m_reverse_api_port_isSet){
isObjectUpdated = true; break;
}
if(m_reverse_api_device_index_isSet){
isObjectUpdated = true; break;
}
if(m_reverse_api_channel_index_isSet){
isObjectUpdated = true; break;
}
}while(false);
return isObjectUpdated;
}
}

View File

@ -0,0 +1,125 @@
/**
* SDRangel
* This is the web REST/JSON API of SDRangel SDR software. SDRangel is an Open Source Qt5/OpenGL 3.0+ (4.3+ in Windows) GUI and server Software Defined Radio and signal analyzer in software. It supports Airspy, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube --- Limitations and specifcities: * In SDRangel GUI the first Rx device set cannot be deleted. Conversely the server starts with no device sets and its number of device sets can be reduced to zero by as many calls as necessary to /sdrangel/deviceset with DELETE method. * Preset import and export from/to file is a server only feature. * Device set focus is a GUI only feature. * The following channels are not implemented (status 501 is returned): ATV and DATV demodulators, Channel Analyzer NG, LoRa demodulator * The device settings and report structures contains only the sub-structure corresponding to the device type. The DeviceSettings and DeviceReport structures documented here shows all of them but only one will be or should be present at a time * The channel settings and report structures contains only the sub-structure corresponding to the channel type. The ChannelSettings and ChannelReport structures documented here shows all of them but only one will be or should be present at a time ---
*
* OpenAPI spec version: 4.15.0
* Contact: f4exb06@gmail.com
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/*
* SWGRigCtlServerSettings.h
*
* RigCtl server settings
*/
#ifndef SWGRigCtlServerSettings_H_
#define SWGRigCtlServerSettings_H_
#include <QJsonObject>
#include <QString>
#include "SWGObject.h"
#include "export.h"
namespace SWGSDRangel {
class SWG_API SWGRigCtlServerSettings: public SWGObject {
public:
SWGRigCtlServerSettings();
SWGRigCtlServerSettings(QString* json);
virtual ~SWGRigCtlServerSettings();
void init();
void cleanup();
virtual QString asJson () override;
virtual QJsonObject* asJsonObject() override;
virtual void fromJsonObject(QJsonObject &json) override;
virtual SWGRigCtlServerSettings* fromJson(QString &jsonString) override;
qint32 getEnabled();
void setEnabled(qint32 enabled);
qint32 getRigCtlPort();
void setRigCtlPort(qint32 rig_ctl_port);
qint32 getMaxFrequencyOffset();
void setMaxFrequencyOffset(qint32 max_frequency_offset);
qint32 getDeviceIndex();
void setDeviceIndex(qint32 device_index);
qint32 getChannelIndex();
void setChannelIndex(qint32 channel_index);
QString* getTitle();
void setTitle(QString* title);
qint32 getRgbColor();
void setRgbColor(qint32 rgb_color);
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);
qint32 getReverseApiChannelIndex();
void setReverseApiChannelIndex(qint32 reverse_api_channel_index);
virtual bool isSet() override;
private:
qint32 enabled;
bool m_enabled_isSet;
qint32 rig_ctl_port;
bool m_rig_ctl_port_isSet;
qint32 max_frequency_offset;
bool m_max_frequency_offset_isSet;
qint32 device_index;
bool m_device_index_isSet;
qint32 channel_index;
bool m_channel_index_isSet;
QString* title;
bool m_title_isSet;
qint32 rgb_color;
bool m_rgb_color_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;
qint32 reverse_api_channel_index;
bool m_reverse_api_channel_index_isSet;
};
}
#endif /* SWGRigCtlServerSettings_H_ */