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,14 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}