Files
moldyn/mathmech/statgengraphwindow.cpp
2013-08-09 23:25:18 +04:00

15 lines
267 B
C++

#include "statgengraphwindow.h"
#include "ui_statgengraphwindow.h"
StatgenGraphWindow::StatgenGraphWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::StatgenGraphWindow)
{
ui->setupUi(this);
}
StatgenGraphWindow::~StatgenGraphWindow()
{
delete ui;
}