2014-03-25 04:26:27 +04:00
|
|
|
|
|
|
|
#include "second_widget.h"
|
|
|
|
#include "ui_second_widget.h"
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
SecondWidget::SecondWidget(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, ui(new Ui::SecondWidget)
|
2014-03-25 04:26:27 +04:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SecondWidget::~SecondWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|