1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef ABSTRACTCONSOLE_H |
6 | #define ABSTRACTCONSOLE_H |
7 | |
8 | class AbstractConsolePrivate; |
9 | class AbstractConsole |
10 | { |
11 | AbstractConsolePrivate *const d; |
12 | public: |
13 | AbstractConsole(void *qWidget); |
14 | virtual ~AbstractConsole(); |
15 | void* qWidget(); |
16 | }; |
17 | |
18 | #endif // ABSTRACTCONSOLE_H |
19 |