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