16 lines
211 B
C++
16 lines
211 B
C++
#include "cpartwindow.h"
|
|
#include "ui_cpartwindow.h"
|
|
|
|
|
|
cPartWindow::cPartWindow(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::cPartWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
cPartWindow::~cPartWindow()
|
|
{
|
|
delete ui;
|
|
}
|