1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #include "projectselectionmodel.h" |
6 | |
7 | ProjectSelectionModel::ProjectSelectionModel(QAbstractItemModel *model) |
8 | : QItemSelectionModel (model) |
9 | { |
10 | |
11 | } |
12 | |
13 | ProjectSelectionModel::ProjectSelectionModel(QAbstractItemModel *model, QObject *parent) |
14 | : QItemSelectionModel (model, parent) |
15 | { |
16 | |
17 | } |
18 |