meshgen

view 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 source
1 #include "mainwindow.h"
2 #include "ui_mainwindow.h"
4 MainWindow::MainWindow(QWidget *parent) :
5 QMainWindow(parent),
6 ui(new Ui::MainWindow)
7 {
8 ui->setupUi(this);
9 }
11 MainWindow::~MainWindow()
12 {
13 delete ui;
14 }