1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef DEBUGGERRUNPARAMETERS_H |
6 | #define DEBUGGERRUNPARAMETERS_H |
7 | |
8 | #include <QObject> |
9 | |
10 | /** |
11 | * @brief Pass parameters-run to debugger |
12 | * before program start. |
13 | */ |
14 | class DebuggerRunParameters |
15 | { |
16 | public: |
17 | DebuggerRunParameters(); |
18 | }; |
19 | |
20 | #endif // DEBUGGERRUNPARAMETERS_H |
21 |