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