summaryrefslogtreecommitdiff
path: root/Tests/QtAutoUicInterface/mywidget.cpp
blob: 7cf1a1318943b5efdb8d8d09bd75d620556e954b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include "mywidget.h"

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

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