1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef COLLABORATORSRECEIVER_H |
6 | #define COLLABORATORSRECEIVER_H |
7 | |
8 | #include <framework/framework.h> |
9 | |
10 | class CollaboratorsReceiver: public dpf::EventHandler, dpf::AutoEventHandlerRegister<CollaboratorsReceiver> |
11 | { |
12 | friend class dpf::AutoEventHandlerRegister<CollaboratorsReceiver>; |
13 | public: |
14 | explicit CollaboratorsReceiver(QObject * parent = nullptr); |
15 | |
16 | static Type type(); |
17 | |
18 | static QStringList topics(); |
19 | |
20 | virtual void eventProcess(const dpf::Event& event) override; |
21 | }; |
22 | |
23 | #endif // COLLABORATORSRECEIVER_H |
24 |