mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
32 lines
475 B
C++
32 lines
475 B
C++
#ifndef FLAGDIALOG_H
|
|
#define FLAGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <memory>
|
|
#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:
|
|
std::unique_ptr<Ui::FlagDialog> ui;
|
|
RVA offset;
|
|
CutterCore *core;
|
|
};
|
|
|
|
#endif // FLAGDIALOG_H
|