cmake/Tests/QtAutogen/Complex/second_widget.cpp

17 lines
226 B
C++
Raw Normal View History

2014-09-13 15:30:52 +02:00
#include "second_widget.h"
2020-02-01 23:06:01 +01:00
2014-09-13 15:30:52 +02:00
#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;
}