|
#include "TwoDGPropertyWidget.h"
|
|
#include "ui_TwoDGPropertyWidget.h"
|
|
|
|
namespace pst
|
|
{
|
|
|
|
TwoDGPropertyWidget::TwoDGPropertyWidget(QWidget* parent)
|
|
: QWidget(parent)
|
|
, ui(new Ui::TwoDGPropertyWidget())
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
TwoDGPropertyWidget::~TwoDGPropertyWidget()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
} |