1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-06 18:32:45 +00:00

Adjust codegeneration to emit simpler classes

This commit is contained in:
Chris Josten 2021-03-20 03:30:50 +01:00
parent 05f79197eb
commit 0358418926
466 changed files with 21405 additions and 13956 deletions

View file

@ -32,26 +32,30 @@
namespace Jellyfin {
namespace DTO {
DeviceOptions::DeviceOptions(QObject *parent) : QObject(parent) {}
DeviceOptions::DeviceOptions(QObject *parent) {}
DeviceOptions *DeviceOptions::fromJSON(QJsonObject source, QObject *parent) {
DeviceOptions *instance = new DeviceOptions(parent);
instance->updateFromJSON(source);
DeviceOptions DeviceOptions::fromJson(QJsonObject source) {DeviceOptions instance;
instance->setFromJson(source, false);
return instance;
}
void DeviceOptions::updateFromJSON(QJsonObject source) {
Q_UNIMPLEMENTED();
void DeviceOptions::setFromJson(QJsonObject source) {
m_customName = fromJsonValue<QString>(source["CustomName"]);
}
QJsonObject DeviceOptions::toJSON() {
Q_UNIMPLEMENTED();
QJsonObject DeviceOptions::toJson() {
QJsonObject result;
result["CustomName"] = toJsonValue<QString>(m_customName);
return result;
}
QString DeviceOptions::customName() const { return m_customName; }
void DeviceOptions::setCustomName(QString newCustomName) {
m_customName = newCustomName;
emit customNameChanged(newCustomName);
}