mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-30 06:55:18 -04:00
NE Alpha 35
This commit is contained in:
parent
52c7a56f68
commit
4160a6a580
24 changed files with 477 additions and 94 deletions
23
UEFITool/gotooffsetdialog.h
Normal file
23
UEFITool/gotooffsetdialog.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue