File indexing completed on 2024-05-19 04:48:24

0001 #ifndef SOURCESMODEL_H
0002 #define SOURCESMODEL_H
0003 
0004 #include <MauiKit3/Core/mauilist.h>
0005 
0006 #include <QObject>
0007 
0008 class SourcesModel : public MauiList
0009 {
0010     Q_OBJECT
0011 public:
0012     SourcesModel(QObject *parent =nullptr);
0013 
0014     void setData(const QList<QUrl> &data, const QUrl &baseUrl);
0015     const FMH::MODEL_LIST &items() const override final;
0016 
0017 private:
0018     FMH::MODEL_LIST m_list;
0019 
0020 };
0021 
0022 #endif // SOURCESMODEL_H