summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutoUicInterface/mywidget.cpp
blob: b528b1a433a5e1d654bcf8ea14424196af8e3fc2 (plain)
1
2
3
4
5
6
7
8
9

#include "mywidget.h"

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