QT Project configured and compiling.

Still doesn't do much, that will come in the following months.
This commit is contained in:
Brian 2013-12-22 21:22:21 -07:00
parent 6ee0553af8
commit 3877187da0
43 changed files with 235 additions and 78 deletions

14
code/src/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;
}