1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 10:12: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 <QString>
#include <QStringList>
#include <optional>
@ -67,16 +66,16 @@ public:
void setType(CodecType newType);
QList<QSharedPointer<ProfileCondition>> conditions() const;
QList<ProfileCondition> conditions() const;
void setConditions(QList<QSharedPointer<ProfileCondition>> newConditions);
void setConditions(QList<ProfileCondition> newConditions);
bool conditionsNull() const;
void setConditionsNull();
QList<QSharedPointer<ProfileCondition>> applyConditions() const;
QList<ProfileCondition> applyConditions() const;
void setApplyConditions(QList<QSharedPointer<ProfileCondition>> newApplyConditions);
void setApplyConditions(QList<ProfileCondition> newApplyConditions);
bool applyConditionsNull() const;
void setApplyConditionsNull();
@ -97,8 +96,8 @@ public:
protected:
CodecType m_type;
QList<QSharedPointer<ProfileCondition>> m_conditions;
QList<QSharedPointer<ProfileCondition>> m_applyConditions;
QList<ProfileCondition> m_conditions;
QList<ProfileCondition> m_applyConditions;
QString m_codec;
QString m_container;
};