10 lines
130 B
C++
Raw Normal View History

2014-08-03 19:52:23 +02:00
#include "mywidget.h"
2016-07-09 11:21:54 +02:00
MyWidget::MyWidget(QWidget* parent)
: QWidget(parent)
, ui(new Ui::MyWidget)
2014-08-03 19:52:23 +02:00
{
ui->setupUi(this);
}