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