mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 06:34:42 -04:00
23 lines
511 B
C++
23 lines
511 B
C++
#ifndef GOTOOFFSETDIALOG_H
|
|
#define GOTOOFFSETDIALOG_H
|
|
|
|
#include <QObject>
|
|
#include <QDialog>
|
|
#include "ui_gotooffsetdialog.h"
|
|
class GoToOffsetDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GoToOffsetDialog(QWidget* parent = NULL):
|
|
QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint),
|
|
ui(new Ui::GoToOffsetDialog) {
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
~GoToOffsetDialog() {delete ui;}
|
|
|
|
Ui::GoToOffsetDialog* ui;
|
|
};
|
|
|
|
#endif // GOTOOFFSETDIALOG_H
|