summaryrefslogtreecommitdiff
path: root/Tests/QtAutoUicInterface/libwidget.cpp
blob: b25f3d77d6719f30a75d939e8585d656ca5990b3 (plain)
1
2
3
4
5
6
7
8
9

#include "libwidget.h"

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