cmake/Tests/QtAutogen/Complex/second_widget.cpp

16 lines
225 B
C++
Raw Normal View History

2014-09-13 15:30:52 +02:00
#include "second_widget.h"
#include "ui_second_widget.h"
2016-07-09 11:21:54 +02:00
SecondWidget::SecondWidget(QWidget* parent)
: QWidget(parent)
, ui(new Ui::SecondWidget)
2014-09-13 15:30:52 +02:00
{
ui->setupUi(this);
}
SecondWidget::~SecondWidget()
{
delete ui;
}