/* * SPDX-FileCopyrightText: (C) 2021 Mikel Johnson * * SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef IMAGEFAVORITESMODEL_H #define IMAGEFAVORITESMODEL_H #include #include "openfilemodel.h" class ImageFavoritesModel : public OpenFileModel { Q_OBJECT public: explicit ImageFavoritesModel(QObject *parent = nullptr); private slots: void slotPopulate(); }; #endif // IMAGEFAVORITESMODEL_H