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