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