1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 18:22:46 +00:00

WIP: Reimplementation of ListModels.

This commit is contained in:
Chris Josten 2021-03-26 21:27:35 +01:00
parent 76a49868b9
commit e421adf733
356 changed files with 1830 additions and 1833 deletions

View file

@ -33,7 +33,6 @@
#include <QJsonObject>
#include <QJsonValue>
#include <QList>
#include <QSharedPointer>
#include <QStringList>
#include <optional>
@ -62,11 +61,11 @@ public:
/**
* @brief Gets or sets the services.
*/
QList<QSharedPointer<LiveTvServiceInfo>> services() const;
QList<LiveTvServiceInfo> services() const;
/**
* @brief Gets or sets the services.
*/
void setServices(QList<QSharedPointer<LiveTvServiceInfo>> newServices);
void setServices(QList<LiveTvServiceInfo> newServices);
bool servicesNull() const;
void setServicesNull();
@ -92,7 +91,7 @@ public:
protected:
QList<QSharedPointer<LiveTvServiceInfo>> m_services;
QList<LiveTvServiceInfo> m_services;
bool m_isEnabled;
QStringList m_enabledUsers;
};