comac_desk_app/PostProcessing/GraphCentralWidget.cpp

18 lines
332 B
C++
Raw Normal View History

2024-11-21 11:50:43 +08:00
#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;
}
}