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
8class AbstractConsolePrivate;
9class AbstractConsole
10{
11 AbstractConsolePrivate *const d;
12public:
13 AbstractConsole(void *qWidget);
14 virtual ~AbstractConsole();
15 void* qWidget();
16};
17
18#endif // ABSTRACTCONSOLE_H
19