forked from loafle/openapi-generator-original
commit
47b4f9fa2c
@ -25,6 +25,14 @@ setValue(void* value, QJsonValue obj, QString type, QString complexType) {
|
|||||||
qint64 *val = static_cast<qint64*>(value);
|
qint64 *val = static_cast<qint64*>(value);
|
||||||
*val = obj.toVariant().toLongLong();
|
*val = obj.toVariant().toLongLong();
|
||||||
}
|
}
|
||||||
|
else if(QStringLiteral("float").compare(type) == 0) {
|
||||||
|
float *val = static_cast<float*>(value);
|
||||||
|
*val = obj.toDouble();
|
||||||
|
}
|
||||||
|
else if(QStringLiteral("double").compare(type) == 0) {
|
||||||
|
double *val = static_cast<double*>(value);
|
||||||
|
*val = obj.toDouble();
|
||||||
|
}
|
||||||
else if (QStringLiteral("QString").compare(type) == 0) {
|
else if (QStringLiteral("QString").compare(type) == 0) {
|
||||||
QString **val = static_cast<QString**>(value);
|
QString **val = static_cast<QString**>(value);
|
||||||
|
|
||||||
@ -86,6 +94,16 @@ setValue(void* value, QJsonValue obj, QString type, QString complexType) {
|
|||||||
setValue(&val, jval, QStringLiteral("bool"), QStringLiteral(""));
|
setValue(&val, jval, QStringLiteral("bool"), QStringLiteral(""));
|
||||||
output->append((void*)&val);
|
output->append((void*)&val);
|
||||||
}
|
}
|
||||||
|
else if(QStringLiteral("float").compare(complexType) == 0) {
|
||||||
|
float val;
|
||||||
|
setValue(&val, jval, QStringLiteral("float"), QStringLiteral(""));
|
||||||
|
output->append((void*)&val);
|
||||||
|
}
|
||||||
|
else if(QStringLiteral("double").compare(complexType) == 0) {
|
||||||
|
double val;
|
||||||
|
setValue(&val, jval, QStringLiteral("double"), QStringLiteral(""));
|
||||||
|
output->append((void*)&val);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
QList<void*> **val = static_cast<QList<void*>**>(value);
|
QList<void*> **val = static_cast<QList<void*>**>(value);
|
||||||
@ -131,6 +149,14 @@ toJsonValue(QString name, void* value, QJsonObject* output, QString type) {
|
|||||||
bool* str = static_cast<bool*>(value);
|
bool* str = static_cast<bool*>(value);
|
||||||
output->insert(name, QJsonValue(*str));
|
output->insert(name, QJsonValue(*str));
|
||||||
}
|
}
|
||||||
|
else if(QStringLiteral("float").compare(type) == 0) {
|
||||||
|
float* str = static_cast<float*>(value);
|
||||||
|
output->insert(name, QJsonValue((double)*str));
|
||||||
|
}
|
||||||
|
else if(QStringLiteral("double").compare(type) == 0) {
|
||||||
|
double* str = static_cast<double*>(value);
|
||||||
|
output->insert(name, QJsonValue(*str));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user