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 | |
10 | class ProjectSelectionModel : public QItemSelectionModel |
11 | { |
12 | public: |
13 | explicit ProjectSelectionModel(QAbstractItemModel *model = nullptr); |
14 | explicit ProjectSelectionModel(QAbstractItemModel *model, QObject *parent); |
15 | }; |
16 | |
17 | #endif // PROJECTSELECTIONMODEL_H |
18 |