summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/Complex/second_widget.cpp
blob: 9f51a80cd88aa269089e6fea6929355c36a46a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include "second_widget.h"

#include "ui_second_widget.h"

SecondWidget::SecondWidget(QWidget* parent)
  : QWidget(parent)
  , ui(new Ui::SecondWidget)
{
  ui->setupUi(this);
}

SecondWidget::~SecondWidget()
{
  delete ui;
}