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.
15 lines
170 B
15 lines
170 B
11 years ago
|
|
||
|
#include "mywidget.h"
|
||
|
|
||
9 years ago
|
MyWidget::MyWidget(QWidget* parent)
|
||
|
: QWidget(parent)
|
||
|
, ui(new Ui::MyWidget)
|
||
11 years ago
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
8 years ago
|
|
||
|
MyWidget::~MyWidget()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|