mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-06 18:45:46 +00:00
15 lines
267 B
C++
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;
|
|
}
|