mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-26 01:48:23 +08:00
24 lines
493 B
C++
24 lines
493 B
C++
#ifndef GOTOBASEDIALOG_H
|
|
#define GOTOBASEDIALOG_H
|
|
|
|
#include <QObject>
|
|
#include <QDialog>
|
|
#include "ui_gotobasedialog.h"
|
|
class GoToBaseDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GoToBaseDialog(QWidget* parent = NULL):
|
|
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint),
|
|
ui(new Ui::GoToBaseDialog) {
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
~GoToBaseDialog() {delete ui;}
|
|
|
|
Ui::GoToBaseDialog* ui;
|
|
};
|
|
|
|
#endif // GOTOBASEDIALOG_H
|