1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/tmpproj/tempwidget.cpp
2018-02-11 15:12:05 +08:00

15 lines
215 B
C++

#include "tempwidget.h"
#include "ui_tempwidget.h"
TempWidget::TempWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::TempWidget)
{
ui->setupUi(this);
}
TempWidget::~TempWidget()
{
delete ui;
}