Files
gdmp/urldialog.h

23 lines
318 B
C
Raw Permalink Normal View History

2025-09-25 16:56:53 +08:00
#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