Initial commit

This commit is contained in:
2024-08-18 13:57:57 +03:00
parent 96115af953
commit d41144a634
399 changed files with 7833 additions and 90 deletions

14
mainwindow.cpp Normal file
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;
}