QT Project configured and compiling.
Still doesn't do much, that will come in the following months.
This commit is contained in:
parent
6ee0553af8
commit
3877187da0
43 changed files with 235 additions and 78 deletions
14
code/src/mainwindow.cpp
Normal file
14
code/src/mainwindow.cpp
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue