mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
444a97e6c9
QQtExample工程依赖于QQt工程
15 lines
271 B
C++
15 lines
271 B
C++
#include "httpdownloaddialog.h"
|
|
#include "ui_httpdownloaddialog.h"
|
|
|
|
HttpDownloadDialog::HttpDownloadDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::HttpDownloadDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
HttpDownloadDialog::~HttpDownloadDialog()
|
|
{
|
|
delete ui;
|
|
}
|