This commit is contained in:
2025-09-25 16:56:53 +08:00
parent e44678d519
commit 1d9da56656
88 changed files with 18171 additions and 0 deletions

22
urldialog.h Normal file
View 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