1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-07-01 05:13:50 +00:00
harbour-sailfin/core/include/JellyfinQt/DTO/version.h

92 lines
3 KiB
C++

/*
* Sailfin: a Jellyfin client written using Qt
* Copyright (C) 2021 Chris Josten and the Sailfin Contributors.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET
* OVERWRITTEN AT SOME POINT!
*
* If there is a bug in this file, please fix the code generator used to generate this file found in
* core/openapigenerator.d.
*
* This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that
* file with a newer file if needed instead of manually updating the files.
*/
#ifndef JELLYFIN_DTO_VERSION_H
#define JELLYFIN_DTO_VERSION_H
#include <QJsonObject>
#include <QObject>
namespace Jellyfin {
namespace DTO {
class Version : public QObject {
Q_OBJECT
public:
explicit Version(QObject *parent = nullptr);
static Version *fromJSON(QJsonObject source, QObject *parent = nullptr);
void updateFromJSON(QJsonObject source);
QJsonObject toJSON();
Q_PROPERTY(qint32 major READ major WRITE setMajor NOTIFY majorChanged)
Q_PROPERTY(qint32 minor READ minor WRITE setMinor NOTIFY minorChanged)
Q_PROPERTY(qint32 build READ build WRITE setBuild NOTIFY buildChanged)
Q_PROPERTY(qint32 revision READ revision WRITE setRevision NOTIFY revisionChanged)
Q_PROPERTY(qint32 majorRevision READ majorRevision WRITE setMajorRevision NOTIFY majorRevisionChanged)
Q_PROPERTY(qint32 minorRevision READ minorRevision WRITE setMinorRevision NOTIFY minorRevisionChanged)
qint32 major() const;
void setMajor(qint32 newMajor);
qint32 minor() const;
void setMinor(qint32 newMinor);
qint32 build() const;
void setBuild(qint32 newBuild);
qint32 revision() const;
void setRevision(qint32 newRevision);
qint32 majorRevision() const;
void setMajorRevision(qint32 newMajorRevision);
qint32 minorRevision() const;
void setMinorRevision(qint32 newMinorRevision);
signals:
void majorChanged(qint32 newMajor);
void minorChanged(qint32 newMinor);
void buildChanged(qint32 newBuild);
void revisionChanged(qint32 newRevision);
void majorRevisionChanged(qint32 newMajorRevision);
void minorRevisionChanged(qint32 newMinorRevision);
protected:
qint32 m_major;
qint32 m_minor;
qint32 m_build;
qint32 m_revision;
qint32 m_majorRevision;
qint32 m_minorRevision;
};
} // NS Jellyfin
} // NS DTO
#endif // JELLYFIN_DTO_VERSION_H