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