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