aboutsummaryrefslogtreecommitdiff
path: root/VMProtect/import_license_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'VMProtect/import_license_dialog.h')
-rw-r--r--VMProtect/import_license_dialog.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/VMProtect/import_license_dialog.h b/VMProtect/import_license_dialog.h
new file mode 100644
index 0000000..95512cc
--- /dev/null
+++ b/VMProtect/import_license_dialog.h
@@ -0,0 +1,18 @@
+#ifndef IMPORT_LICENSE_DIALOG_H
+#define IMPORT_LICENSE_DIALOG_H
+
+class ImportLicenseDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ ImportLicenseDialog(QWidget *parent = NULL);
+ QString serial() const;
+private slots:
+ void serialChanged();
+ void helpClicked();
+private:
+ QPlainTextEdit *serialEdit_;
+ QPushButton *okButton_;
+};
+
+#endif \ No newline at end of file