diff options
Diffstat (limited to 'Tests/QtAutogen/complex/multiplewidgets.cpp')
-rw-r--r-- | Tests/QtAutogen/complex/multiplewidgets.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/QtAutogen/complex/multiplewidgets.cpp b/Tests/QtAutogen/complex/multiplewidgets.cpp new file mode 100644 index 0000000..fda36ea --- /dev/null +++ b/Tests/QtAutogen/complex/multiplewidgets.cpp @@ -0,0 +1,19 @@ + +#include "multiplewidgets.h" + +#include "ui_widget1.h" +#include "ui_widget2.h" + +Widget1::Widget1(QWidget* parent) + : QWidget(parent) + , ui(new Ui::Widget1) +{ + ui->setupUi(this); +} + +Widget2::Widget2(QWidget* parent) + : QWidget(parent) + , ui(new Ui::Widget2) +{ + ui->setupUi(this); +} |