You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
287 B
20 lines
287 B
10 years ago
|
|
||
|
#include "multiplewidgets.h"
|
||
|
|
||
|
#include "ui_widget1.h"
|
||
|
#include "ui_widget2.h"
|
||
|
|
||
9 years ago
|
Widget1::Widget1(QWidget* parent)
|
||
|
: QWidget(parent)
|
||
|
, ui(new Ui::Widget1)
|
||
10 years ago
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
9 years ago
|
Widget2::Widget2(QWidget* parent)
|
||
|
: QWidget(parent)
|
||
|
, ui(new Ui::Widget2)
|
||
10 years ago
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|