blob: 803fcd3bfd50ebf8a383b6673bdb6f41d35b5f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <QtWidgets/QDialog>
#include <QtWidgets/QComboBox>
#include "binaryninjaapi.h"
#include "dialogtextedit.h"
#include "uicontext.h"
class BINARYNINJAUIAPI CommentDialog: public QDialog
{
Q_OBJECT
DialogTextEdit* m_comment;
public:
CommentDialog(QWidget* parent, const QString& comment = "");
QString getComment();
};
|