15 lines
257 B
C++
15 lines
257 B
C++
#include "P401_CuttingPage.h"
|
|
#include "ui_P401_CuttingPage.h"
|
|
|
|
P401_CuttingPage::P401_CuttingPage(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::P401_CuttingPage)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
P401_CuttingPage::~P401_CuttingPage()
|
|
{
|
|
delete ui;
|
|
}
|