diff options
Diffstat (limited to 'ui/commentdialog.h')
| -rw-r--r-- | ui/commentdialog.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/commentdialog.h b/ui/commentdialog.h new file mode 100644 index 00000000..803fcd3b --- /dev/null +++ b/ui/commentdialog.h @@ -0,0 +1,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(); +}; |
