setup main window

This commit is contained in:
talksik
2026-01-31 16:42:22 -08:00
parent fc762a1e41
commit 55374630b9
4 changed files with 54 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QObject>
#include <QMainWindow>
QT_BEGIN_NAMESPACE
QT_END_NAMESPACE
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
};
#endif // MAINWINDOW_H