Added graphwindow

This commit is contained in:
arcan1s
2013-08-10 04:06:51 +04:00
parent 1c238fcc81
commit 063e74a472
19 changed files with 572 additions and 70 deletions

14
mathmech/aglallwindow.cpp Normal file
View File

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