summaryrefslogtreecommitdiff
path: root/ui/freeversion.h
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2024-10-29 20:31:01 +0800
committerXusheng <xusheng@vector35.com>2024-10-30 22:27:58 +0800
commitf2f80bdd4358ee861e7748fae5d8325d6fc90f4c (patch)
tree03615363cd2ab9aa416e4539b11dcb716a9105db /ui/freeversion.h
parent18ee363d8b11b0e09babf69193de19007b3be957 (diff)
Move the freeversion.h to api/ui
Diffstat (limited to 'ui/freeversion.h')
-rw-r--r--ui/freeversion.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/freeversion.h b/ui/freeversion.h
new file mode 100644
index 00000000..41d9097d
--- /dev/null
+++ b/ui/freeversion.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <QDialog>
+#include "binaryninjaapi.h"
+#include "uitypes.h"
+
+#ifdef DEMO_EDITION
+class BINARYNINJAUIAPI FreeVersionLimitation: public QDialog
+{
+ Q_OBJECT
+
+public:
+ FreeVersionLimitation(const QString& feature = "");
+};
+#endif