Zhao Yuhang
2023-12-11 2f6c83c095724bbba0f43b2f2893ba73c17949a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
 
#include <QtWidgets/QMainWindow>
 
class MainWindow : public QMainWindow {
public:
    explicit MainWindow(QWidget *parent = nullptr);
    ~MainWindow();
 
protected:
    void installWindowAgent();
};
 
#endif // MAINWINDOW_H