Sine Striker
2023-12-05 3cfe15a9c3db0993d8b8fef5d148625840e5a75c
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