diff options
Diffstat (limited to 'Tests/QtAutogen/Complex/second_widget.cpp')
-rw-r--r-- | Tests/QtAutogen/Complex/second_widget.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutogen/Complex/second_widget.cpp b/Tests/QtAutogen/Complex/second_widget.cpp new file mode 100644 index 0000000..c575f10 --- /dev/null +++ b/Tests/QtAutogen/Complex/second_widget.cpp @@ -0,0 +1,15 @@ + +#include "second_widget.h" +#include "ui_second_widget.h" + +SecondWidget::SecondWidget(QWidget* parent) + : QWidget(parent) + , ui(new Ui::SecondWidget) +{ + ui->setupUi(this); +} + +SecondWidget::~SecondWidget() +{ + delete ui; +} |