connected to gui

This commit is contained in:
zanostro 2025-11-12 19:42:59 +01:00
parent 8a6e916876
commit d77a32e6e6
8 changed files with 126 additions and 26 deletions

View file

@ -0,0 +1,22 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H