ui修改
This commit is contained in:
22
urldialog.h
Normal file
22
urldialog.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef URLDIALOG_H
|
||||
#define URLDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class UrlDialog;
|
||||
}
|
||||
|
||||
class UrlDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit UrlDialog(QWidget *parent = 0);
|
||||
~UrlDialog();
|
||||
QString GetUrl();
|
||||
private:
|
||||
Ui::UrlDialog *ui;
|
||||
};
|
||||
|
||||
#endif // URLDIALOG_H
|
||||
Reference in New Issue
Block a user