1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef SENDEVENTS_H |
6 | #define SENDEVENTS_H |
7 | |
8 | #include <QString> |
9 | #include "services/project/projectservice.h" |
10 | |
11 | class SendEvents final |
12 | { |
13 | SendEvents() = delete; |
14 | SendEvents(const SendEvents &) = delete; |
15 | public: |
16 | static void projectActived(const dpfservice::ProjectInfo &info); |
17 | static void projectCreated(const dpfservice::ProjectInfo &info); |
18 | static void projectDeleted(const dpfservice::ProjectInfo &info); |
19 | static void collaboratorsOpenRepos(const QString &workspace); |
20 | }; |
21 | |
22 | #endif // SENDEVENTS_H |
23 | |