mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
23 lines
347 B
C
23 lines
347 B
C
|
#ifndef HTTPDOWNLOADDIALOG_H
|
||
|
#define HTTPDOWNLOADDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class HttpDownloadDialog;
|
||
|
}
|
||
|
|
||
|
class HttpDownloadDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit HttpDownloadDialog(QWidget *parent = 0);
|
||
|
~HttpDownloadDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::HttpDownloadDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // HTTPDOWNLOADDIALOG_H
|