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

#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;
}