| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. | 
|---|---|
| 2 | // | 
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later | 
| 4 | |
| 5 | #ifndef DEBUGGERSIGNALS_H | 
| 6 | #define DEBUGGERSIGNALS_H | 
| 7 | |
| 8 | #include "debuggerglobals.h" | 
| 9 | #include "stackframe.h" | 
| 10 | #include "interface/variable.h" | 
| 11 | #include "event/event.h" | 
| 12 | |
| 13 | #include <QObject> | 
| 14 | |
| 15 | class DebuggerSignals : public QObject | 
| 16 | { | 
| 17 | Q_OBJECT | 
| 18 | |
| 19 | public: | 
| 20 | Q_SIGNALS: | 
| 21 | void receivedEvent(const dpf::Event &event); | 
| 22 | }; | 
| 23 | |
| 24 | #endif // DEBUGGERSIGNALS_H | 
| 25 | 
