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