summaryrefslogtreecommitdiff
path: root/aboutdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'aboutdialog.h')
-rw-r--r--aboutdialog.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/aboutdialog.h b/aboutdialog.h
new file mode 100644
index 0000000..5965507
--- /dev/null
+++ b/aboutdialog.h
@@ -0,0 +1,26 @@
+#ifndef ABOUTDIALOG_H
+#define ABOUTDIALOG_H
+
+#include <QAbstractButton>
+#include <QDialog>
+
+namespace Ui {
+class AboutDialog;
+}
+
+class AboutDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit AboutDialog(QWidget *parent = nullptr);
+ ~AboutDialog();
+
+private slots:
+ void on_buttonBox_clicked(QAbstractButton *button);
+
+private:
+ Ui::AboutDialog *ui;
+};
+
+#endif // ABOUTDIALOG_H