cutter/src/dialogs/FlagDialog.h

32 lines
475 B
C
Raw Normal View History

#ifndef FLAGDIALOG_H
#define FLAGDIALOG_H
#include <QDialog>
2017-10-02 09:41:28 +00:00
#include <memory>
2018-03-04 17:42:02 +00:00
#include "Cutter.h"
namespace Ui
{
class FlagDialog;
}
class FlagDialog : public QDialog
{
Q_OBJECT
public:
explicit FlagDialog(RVA offset, QWidget *parent = 0);
~FlagDialog();
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
2017-10-02 09:41:28 +00:00
std::unique_ptr<Ui::FlagDialog> ui;
RVA offset;
CutterCore *core;
};
#endif // FLAGDIALOG_H