mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-18 07:35:47 -05:00
REST API device and channel actions: generate swagger code
This commit is contained in:
parent
86fd508828
commit
c8b9c912a2
File diff suppressed because it is too large
Load Diff
@ -1,21 +1,21 @@
|
|||||||
ChannelActions:
|
ChannelActions:
|
||||||
description: Base channel actions. Only the channel actions corresponding to the channel specified in the channelType field is or should be present.
|
description: Base channel actions. Only the channel actions corresponding to the channel specified in the channelType field is or should be present.
|
||||||
discriminator: channelType
|
discriminator: channelType
|
||||||
required:
|
required:
|
||||||
- channelType
|
- channelType
|
||||||
- direction
|
- direction
|
||||||
properties:
|
properties:
|
||||||
channelType:
|
channelType:
|
||||||
description: Channel type code
|
description: Channel type code
|
||||||
type: string
|
type: string
|
||||||
direction:
|
direction:
|
||||||
description: 0 for Rx only, 1 for Tx only or 2 for any number and direction (default 0)
|
description: 0 for Rx only, 1 for Tx only or 2 for any number and direction (default 0)
|
||||||
type: integer
|
type: integer
|
||||||
originatorDeviceSetIndex:
|
originatorDeviceSetIndex:
|
||||||
description: Optional for reverse API. This is the device set index from where the message comes from.
|
description: Optional for reverse API. This is the device set index from where the message comes from.
|
||||||
type: integer
|
type: integer
|
||||||
originatorChannelIndex:
|
originatorChannelIndex:
|
||||||
description: Optional for reverse API. This is the channel index from where the message comes from.
|
description: Optional for reverse API. This is the channel index from where the message comes from.
|
||||||
type: integer
|
type: integer
|
||||||
FileSourceActions:
|
FileSourceActions:
|
||||||
$ref: "/doc/swagger/include/FileSource.yaml#/FileSourceActions"
|
$ref: "/doc/swagger/include/FileSource.yaml#/FileSourceActions"
|
||||||
|
@ -1388,7 +1388,7 @@ paths:
|
|||||||
description: post an action on a device
|
description: post an action on a device
|
||||||
operationId: devicesetDeviceActionsPost
|
operationId: devicesetDeviceActionsPost
|
||||||
tags:
|
tags:
|
||||||
- Deviceset
|
- DeviceSet
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: deviceSetIndex
|
name: deviceSetIndex
|
||||||
@ -1647,7 +1647,7 @@ paths:
|
|||||||
description: post an action or actions on a channel
|
description: post an action or actions on a channel
|
||||||
operationId: devicesetChannelActionsPost
|
operationId: devicesetChannelActionsPost
|
||||||
tags:
|
tags:
|
||||||
- Deviceset
|
- DeviceSet
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: deviceSetIndex
|
name: deviceSetIndex
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -28,6 +28,65 @@ SWGDeviceSetApi::SWGDeviceSetApi(QString host, QString basePath) {
|
|||||||
this->basePath = basePath;
|
this->basePath = basePath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SWGDeviceSetApi::devicesetChannelActionsPost(qint32 device_set_index, qint32 channel_index, SWGChannelActions& body) {
|
||||||
|
QString fullPath;
|
||||||
|
fullPath.append(this->host).append(this->basePath).append("/sdrangel/deviceset/{deviceSetIndex}/channel/{channelIndex}/actions");
|
||||||
|
|
||||||
|
QString device_set_indexPathParam("{"); device_set_indexPathParam.append("deviceSetIndex").append("}");
|
||||||
|
fullPath.replace(device_set_indexPathParam, stringValue(device_set_index));
|
||||||
|
QString channel_indexPathParam("{"); channel_indexPathParam.append("channelIndex").append("}");
|
||||||
|
fullPath.replace(channel_indexPathParam, stringValue(channel_index));
|
||||||
|
|
||||||
|
|
||||||
|
SWGHttpRequestWorker *worker = new SWGHttpRequestWorker();
|
||||||
|
SWGHttpRequestInput input(fullPath, "POST");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
QString output = body.asJson();
|
||||||
|
input.request_body.append(output);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
foreach(QString key, this->defaultHeaders.keys()) {
|
||||||
|
input.headers.insert(key, this->defaultHeaders.value(key));
|
||||||
|
}
|
||||||
|
|
||||||
|
connect(worker,
|
||||||
|
&SWGHttpRequestWorker::on_execution_finished,
|
||||||
|
this,
|
||||||
|
&SWGDeviceSetApi::devicesetChannelActionsPostCallback);
|
||||||
|
|
||||||
|
worker->execute(&input);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SWGDeviceSetApi::devicesetChannelActionsPostCallback(SWGHttpRequestWorker * worker) {
|
||||||
|
QString msg;
|
||||||
|
QString error_str = worker->error_str;
|
||||||
|
QNetworkReply::NetworkError error_type = worker->error_type;
|
||||||
|
|
||||||
|
if (worker->error_type == QNetworkReply::NoError) {
|
||||||
|
msg = QString("Success! %1 bytes").arg(worker->response.length());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
msg = "Error: " + worker->error_str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QString json(worker->response);
|
||||||
|
SWGSuccessResponse* output = static_cast<SWGSuccessResponse*>(create(json, QString("SWGSuccessResponse")));
|
||||||
|
worker->deleteLater();
|
||||||
|
|
||||||
|
if (worker->error_type == QNetworkReply::NoError) {
|
||||||
|
emit devicesetChannelActionsPostSignal(output);
|
||||||
|
} else {
|
||||||
|
emit devicesetChannelActionsPostSignalE(output, error_type, error_str);
|
||||||
|
emit devicesetChannelActionsPostSignalEFull(worker, error_type, error_str);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SWGDeviceSetApi::devicesetChannelDelete(qint32 device_set_index, qint32 channel_index) {
|
SWGDeviceSetApi::devicesetChannelDelete(qint32 device_set_index, qint32 channel_index) {
|
||||||
QString fullPath;
|
QString fullPath;
|
||||||
@ -425,6 +484,63 @@ SWGDeviceSetApi::devicesetChannelsReportGetCallback(SWGHttpRequestWorker * worke
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SWGDeviceSetApi::devicesetDeviceActionsPost(qint32 device_set_index, SWGDeviceActions& body) {
|
||||||
|
QString fullPath;
|
||||||
|
fullPath.append(this->host).append(this->basePath).append("/sdrangel/deviceset/{deviceSetIndex}/device/actions");
|
||||||
|
|
||||||
|
QString device_set_indexPathParam("{"); device_set_indexPathParam.append("deviceSetIndex").append("}");
|
||||||
|
fullPath.replace(device_set_indexPathParam, stringValue(device_set_index));
|
||||||
|
|
||||||
|
|
||||||
|
SWGHttpRequestWorker *worker = new SWGHttpRequestWorker();
|
||||||
|
SWGHttpRequestInput input(fullPath, "POST");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
QString output = body.asJson();
|
||||||
|
input.request_body.append(output);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
foreach(QString key, this->defaultHeaders.keys()) {
|
||||||
|
input.headers.insert(key, this->defaultHeaders.value(key));
|
||||||
|
}
|
||||||
|
|
||||||
|
connect(worker,
|
||||||
|
&SWGHttpRequestWorker::on_execution_finished,
|
||||||
|
this,
|
||||||
|
&SWGDeviceSetApi::devicesetDeviceActionsPostCallback);
|
||||||
|
|
||||||
|
worker->execute(&input);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SWGDeviceSetApi::devicesetDeviceActionsPostCallback(SWGHttpRequestWorker * worker) {
|
||||||
|
QString msg;
|
||||||
|
QString error_str = worker->error_str;
|
||||||
|
QNetworkReply::NetworkError error_type = worker->error_type;
|
||||||
|
|
||||||
|
if (worker->error_type == QNetworkReply::NoError) {
|
||||||
|
msg = QString("Success! %1 bytes").arg(worker->response.length());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
msg = "Error: " + worker->error_str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QString json(worker->response);
|
||||||
|
SWGSuccessResponse* output = static_cast<SWGSuccessResponse*>(create(json, QString("SWGSuccessResponse")));
|
||||||
|
worker->deleteLater();
|
||||||
|
|
||||||
|
if (worker->error_type == QNetworkReply::NoError) {
|
||||||
|
emit devicesetDeviceActionsPostSignal(output);
|
||||||
|
} else {
|
||||||
|
emit devicesetDeviceActionsPostSignalE(output, error_type, error_str);
|
||||||
|
emit devicesetDeviceActionsPostSignalEFull(worker, error_type, error_str);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SWGDeviceSetApi::devicesetDevicePut(qint32 device_set_index, SWGDeviceListItem& body) {
|
SWGDeviceSetApi::devicesetDevicePut(qint32 device_set_index, SWGDeviceListItem& body) {
|
||||||
QString fullPath;
|
QString fullPath;
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
|
|
||||||
#include "SWGHttpRequest.h"
|
#include "SWGHttpRequest.h"
|
||||||
|
|
||||||
|
#include "SWGChannelActions.h"
|
||||||
#include "SWGChannelReport.h"
|
#include "SWGChannelReport.h"
|
||||||
#include "SWGChannelSettings.h"
|
#include "SWGChannelSettings.h"
|
||||||
#include "SWGChannelsDetail.h"
|
#include "SWGChannelsDetail.h"
|
||||||
|
#include "SWGDeviceActions.h"
|
||||||
#include "SWGDeviceListItem.h"
|
#include "SWGDeviceListItem.h"
|
||||||
#include "SWGDeviceReport.h"
|
#include "SWGDeviceReport.h"
|
||||||
#include "SWGDeviceSet.h"
|
#include "SWGDeviceSet.h"
|
||||||
@ -42,6 +44,7 @@ public:
|
|||||||
QString basePath;
|
QString basePath;
|
||||||
QMap<QString, QString> defaultHeaders;
|
QMap<QString, QString> defaultHeaders;
|
||||||
|
|
||||||
|
void devicesetChannelActionsPost(qint32 device_set_index, qint32 channel_index, SWGChannelActions& body);
|
||||||
void devicesetChannelDelete(qint32 device_set_index, qint32 channel_index);
|
void devicesetChannelDelete(qint32 device_set_index, qint32 channel_index);
|
||||||
void devicesetChannelPost(qint32 device_set_index, SWGChannelSettings& body);
|
void devicesetChannelPost(qint32 device_set_index, SWGChannelSettings& body);
|
||||||
void devicesetChannelReportGet(qint32 device_set_index, qint32 channel_index);
|
void devicesetChannelReportGet(qint32 device_set_index, qint32 channel_index);
|
||||||
@ -49,6 +52,7 @@ public:
|
|||||||
void devicesetChannelSettingsPatch(qint32 device_set_index, qint32 channel_index, SWGChannelSettings& body);
|
void devicesetChannelSettingsPatch(qint32 device_set_index, qint32 channel_index, SWGChannelSettings& body);
|
||||||
void devicesetChannelSettingsPut(qint32 device_set_index, qint32 channel_index, SWGChannelSettings& body);
|
void devicesetChannelSettingsPut(qint32 device_set_index, qint32 channel_index, SWGChannelSettings& body);
|
||||||
void devicesetChannelsReportGet(qint32 device_set_index);
|
void devicesetChannelsReportGet(qint32 device_set_index);
|
||||||
|
void devicesetDeviceActionsPost(qint32 device_set_index, SWGDeviceActions& body);
|
||||||
void devicesetDevicePut(qint32 device_set_index, SWGDeviceListItem& body);
|
void devicesetDevicePut(qint32 device_set_index, SWGDeviceListItem& body);
|
||||||
void devicesetDeviceReportGet(qint32 device_set_index);
|
void devicesetDeviceReportGet(qint32 device_set_index);
|
||||||
void devicesetDeviceRunDelete(qint32 device_set_index, SWGDeviceSettings& body);
|
void devicesetDeviceRunDelete(qint32 device_set_index, SWGDeviceSettings& body);
|
||||||
@ -66,6 +70,7 @@ public:
|
|||||||
void instanceDeviceSetPost(qint32 direction);
|
void instanceDeviceSetPost(qint32 direction);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void devicesetChannelActionsPostCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetChannelDeleteCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelDeleteCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetChannelPostCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelPostCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetChannelReportGetCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelReportGetCallback (SWGHttpRequestWorker * worker);
|
||||||
@ -73,6 +78,7 @@ private:
|
|||||||
void devicesetChannelSettingsPatchCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelSettingsPatchCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetChannelSettingsPutCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelSettingsPutCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetChannelsReportGetCallback (SWGHttpRequestWorker * worker);
|
void devicesetChannelsReportGetCallback (SWGHttpRequestWorker * worker);
|
||||||
|
void devicesetDeviceActionsPostCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetDevicePutCallback (SWGHttpRequestWorker * worker);
|
void devicesetDevicePutCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetDeviceReportGetCallback (SWGHttpRequestWorker * worker);
|
void devicesetDeviceReportGetCallback (SWGHttpRequestWorker * worker);
|
||||||
void devicesetDeviceRunDeleteCallback (SWGHttpRequestWorker * worker);
|
void devicesetDeviceRunDeleteCallback (SWGHttpRequestWorker * worker);
|
||||||
@ -90,6 +96,7 @@ private:
|
|||||||
void instanceDeviceSetPostCallback (SWGHttpRequestWorker * worker);
|
void instanceDeviceSetPostCallback (SWGHttpRequestWorker * worker);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
void devicesetChannelActionsPostSignal(SWGSuccessResponse* summary);
|
||||||
void devicesetChannelDeleteSignal(SWGChannelSettings* summary);
|
void devicesetChannelDeleteSignal(SWGChannelSettings* summary);
|
||||||
void devicesetChannelPostSignal(SWGSuccessResponse* summary);
|
void devicesetChannelPostSignal(SWGSuccessResponse* summary);
|
||||||
void devicesetChannelReportGetSignal(SWGChannelReport* summary);
|
void devicesetChannelReportGetSignal(SWGChannelReport* summary);
|
||||||
@ -97,6 +104,7 @@ signals:
|
|||||||
void devicesetChannelSettingsPatchSignal(SWGChannelSettings* summary);
|
void devicesetChannelSettingsPatchSignal(SWGChannelSettings* summary);
|
||||||
void devicesetChannelSettingsPutSignal(SWGChannelSettings* summary);
|
void devicesetChannelSettingsPutSignal(SWGChannelSettings* summary);
|
||||||
void devicesetChannelsReportGetSignal(SWGChannelsDetail* summary);
|
void devicesetChannelsReportGetSignal(SWGChannelsDetail* summary);
|
||||||
|
void devicesetDeviceActionsPostSignal(SWGSuccessResponse* summary);
|
||||||
void devicesetDevicePutSignal(SWGDeviceListItem* summary);
|
void devicesetDevicePutSignal(SWGDeviceListItem* summary);
|
||||||
void devicesetDeviceReportGetSignal(SWGDeviceReport* summary);
|
void devicesetDeviceReportGetSignal(SWGDeviceReport* summary);
|
||||||
void devicesetDeviceRunDeleteSignal(SWGDeviceState* summary);
|
void devicesetDeviceRunDeleteSignal(SWGDeviceState* summary);
|
||||||
@ -113,6 +121,7 @@ signals:
|
|||||||
void instanceDeviceSetDeleteSignal(SWGSuccessResponse* summary);
|
void instanceDeviceSetDeleteSignal(SWGSuccessResponse* summary);
|
||||||
void instanceDeviceSetPostSignal(SWGSuccessResponse* summary);
|
void instanceDeviceSetPostSignal(SWGSuccessResponse* summary);
|
||||||
|
|
||||||
|
void devicesetChannelActionsPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelDeleteSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelDeleteSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelReportGetSignalE(SWGChannelReport* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelReportGetSignalE(SWGChannelReport* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
@ -120,6 +129,7 @@ signals:
|
|||||||
void devicesetChannelSettingsPatchSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelSettingsPatchSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelSettingsPutSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelSettingsPutSignalE(SWGChannelSettings* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelsReportGetSignalE(SWGChannelsDetail* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelsReportGetSignalE(SWGChannelsDetail* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
|
void devicesetDeviceActionsPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDevicePutSignalE(SWGDeviceListItem* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDevicePutSignalE(SWGDeviceListItem* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDeviceReportGetSignalE(SWGDeviceReport* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDeviceReportGetSignalE(SWGDeviceReport* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDeviceRunDeleteSignalE(SWGDeviceState* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDeviceRunDeleteSignalE(SWGDeviceState* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
@ -136,6 +146,7 @@ signals:
|
|||||||
void instanceDeviceSetDeleteSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void instanceDeviceSetDeleteSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void instanceDeviceSetPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
void instanceDeviceSetPostSignalE(SWGSuccessResponse* summary, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
|
|
||||||
|
void devicesetChannelActionsPostSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelDeleteSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelDeleteSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelPostSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelPostSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
@ -143,6 +154,7 @@ signals:
|
|||||||
void devicesetChannelSettingsPatchSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelSettingsPatchSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelSettingsPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelSettingsPutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetChannelsReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetChannelsReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
|
void devicesetDeviceActionsPostSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDevicePutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDevicePutSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDeviceReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDeviceReportGetSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
void devicesetDeviceRunDeleteSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
void devicesetDeviceRunDeleteSignalEFull(SWGHttpRequestWorker* worker, QNetworkReply::NetworkError error_type, QString& error_str);
|
||||||
|
Loading…
Reference in New Issue
Block a user