summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/UicInterface/mywidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/UicInterface/mywidget.cpp')
-rw-r--r--Tests/QtAutogen/UicInterface/mywidget.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/QtAutogen/UicInterface/mywidget.cpp b/Tests/QtAutogen/UicInterface/mywidget.cpp
new file mode 100644
index 0000000..7cf1a13
--- /dev/null
+++ b/Tests/QtAutogen/UicInterface/mywidget.cpp
@@ -0,0 +1,14 @@
+
+#include "mywidget.h"
+
+MyWidget::MyWidget(QWidget* parent)
+ : QWidget(parent)
+ , ui(new Ui::MyWidget)
+{
+ ui->setupUi(this);
+}
+
+MyWidget::~MyWidget()
+{
+ delete ui;
+}