#ifndef FLAGDIALOG_H #define FLAGDIALOG_H #include #include #include "core/CutterCommon.h" namespace Ui { class FlagDialog; } class FlagDialog : public QDialog { Q_OBJECT public: explicit FlagDialog(RVA offset, QWidget *parent = nullptr); ~FlagDialog(); private slots: void buttonBoxAccepted(); void buttonBoxRejected(); private: std::unique_ptr ui; RVA offset; QString flagName; ut64 flagOffset; }; #endif // FLAGDIALOG_H