mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-30 00:05:05 +00:00
ae35ac9d08
1. remove unnecessary includes. compile optimization 2. add more const for getter functions
31 lines
467 B
C++
31 lines
467 B
C++
#ifndef FLAGDIALOG_H
|
|
#define FLAGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <memory>
|
|
#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 on_buttonBox_accepted();
|
|
void on_buttonBox_rejected();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::FlagDialog> ui;
|
|
RVA offset;
|
|
};
|
|
|
|
#endif // FLAGDIALOG_H
|