1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef PROJECTKEEPER_H
6#define PROJECTKEEPER_H
7
8#include "services/project/projectservice.h"
9
10#include <QObject>
11
12class QAction;
13class ProjectTree;
14class QStandardItem;
15class ProjectKeeper final : public QObject
16{
17 Q_OBJECT
18 Q_DISABLE_COPY(ProjectKeeper)
19public:
20 ProjectKeeper();
21 static ProjectKeeper *instance();
22 ProjectTree *treeView();
23};
24
25#endif // PROJECTKEEPER_H
26