Sine Striker
2023-12-07 988674c5cab26797b6ce77ac3df064e36070e7f3
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