meshgen

diff src/mainwindow.cc @ 0:795217e82f3d

starting the mesh generation GUI project
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 30 Aug 2015 05:54:32 +0300
parents
children 7dac9d1bcae4
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/mainwindow.cc	Sun Aug 30 05:54:32 2015 +0300
     1.3 @@ -0,0 +1,14 @@
     1.4 +#include "mainwindow.h"
     1.5 +#include "ui_mainwindow.h"
     1.6 +
     1.7 +MainWindow::MainWindow(QWidget *parent) :
     1.8 +	QMainWindow(parent),
     1.9 +	ui(new Ui::MainWindow)
    1.10 +{
    1.11 +	ui->setupUi(this);
    1.12 +}
    1.13 +
    1.14 +MainWindow::~MainWindow()
    1.15 +{
    1.16 +	delete ui;
    1.17 +}