diff options
Diffstat (limited to 'Tests/QtAutoUicInterface/mywidget.cpp')
-rw-r--r-- | Tests/QtAutoUicInterface/mywidget.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/QtAutoUicInterface/mywidget.cpp b/Tests/QtAutoUicInterface/mywidget.cpp new file mode 100644 index 0000000..b528b1a --- /dev/null +++ b/Tests/QtAutoUicInterface/mywidget.cpp @@ -0,0 +1,9 @@ + +#include "mywidget.h" + +MyWidget::MyWidget(QWidget *parent) + : QWidget(parent), + ui(new Ui::MyWidget) +{ + ui->setupUi(this); +} |