Added configuration interface

This commit is contained in:
arcan1s
2013-08-09 23:25:18 +04:00
parent abf7bce7df
commit 1c238fcc81
28 changed files with 987 additions and 3760 deletions

14
mathmech/aboutwindow.cpp Normal file
View File

@ -0,0 +1,14 @@
#include "aboutwindow.h"
#include "ui_aboutwindow.h"
AboutWindow::AboutWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::AboutWindow)
{
ui->setupUi(this);
}
AboutWindow::~AboutWindow()
{
delete ui;
}