1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef ABSTRACTMAINWINDOW_H
6#define ABSTRACTMAINWINDOW_H
7
8#include <string>
9#include <list>
10class AbstractNav;
11class AbstractNavAction;
12class AbstractMenuBar;
13class AbstractMainWindowPrivate;
14namespace WindowContainer {
15
16} // namespace Container
17
18class AbstractMainWindow
19{
20 AbstractMainWindowPrivate *const d;
21public:
22 explicit AbstractMainWindow(void *qMainWindow);
23 virtual ~AbstractMainWindow();
24 void *qMainWindow();
25};
26
27#endif // ABSTRACTMAINWINDOW_H
28