18 lines
332 B
C++
18 lines
332 B
C++
|
|
#include "GraphCentralWidget.h"
|
||
|
|
#include "ui_GraphCentralWidget.h"
|
||
|
|
|
||
|
|
namespace pst
|
||
|
|
{
|
||
|
|
GraphCentralWidget::GraphCentralWidget(QWidget* parent)
|
||
|
|
: QWidget(parent)
|
||
|
|
, ui(new Ui::GraphCentralWidget())
|
||
|
|
{
|
||
|
|
ui->setupUi(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
GraphCentralWidget::~GraphCentralWidget()
|
||
|
|
{
|
||
|
|
delete ui;
|
||
|
|
}
|
||
|
|
}
|