1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-04 09:42:45 +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

@ -34,7 +34,6 @@
#include <QJsonObject>
#include <QJsonValue>
#include <QList>
#include <QSharedPointer>
#include <QString>
#include <QStringList>
#include <optional>
@ -176,9 +175,9 @@ public:
void setArtistProviderIdsNull();
QList<QSharedPointer<SongInfo>> songInfos() const;
QList<SongInfo> songInfos() const;
void setSongInfos(QList<QSharedPointer<SongInfo>> newSongInfos);
void setSongInfos(QList<SongInfo> newSongInfos);
bool songInfosNull() const;
void setSongInfosNull();
@ -196,7 +195,7 @@ protected:
bool m_isAutomated;
QStringList m_albumArtists;
std::optional<QJsonObject> m_artistProviderIds = std::nullopt;
QList<QSharedPointer<SongInfo>> m_songInfos;
QList<SongInfo> m_songInfos;
};
} // NS DTO