1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef PROJECTSELECTIONMODEL_H
6#define PROJECTSELECTIONMODEL_H
7
8#include <QItemSelectionModel>
9
10class ProjectSelectionModel : public QItemSelectionModel
11{
12public:
13 explicit ProjectSelectionModel(QAbstractItemModel *model = nullptr);
14 explicit ProjectSelectionModel(QAbstractItemModel *model, QObject *parent);
15};
16
17#endif // PROJECTSELECTIONMODEL_H
18