aboutsummaryrefslogtreecommitdiff
path: root/src/about/aboutdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/about/aboutdialog.h')
-rw-r--r--src/about/aboutdialog.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/about/aboutdialog.h b/src/about/aboutdialog.h
new file mode 100644
index 0000000..e114e7c
--- /dev/null
+++ b/src/about/aboutdialog.h
@@ -0,0 +1,31 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef SMOLBOTE_ABOUTDIALOG_H
+#define SMOLBOTE_ABOUTDIALOG_H
+
+#include <QDialog>
+
+namespace Ui
+{
+class AboutDialog;
+}
+
+class AboutDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit AboutDialog(QWidget *parent = nullptr);
+ ~AboutDialog() override;
+
+private:
+ Ui::AboutDialog *ui;
+};
+
+#endif // SMOLBOTE_ABOUTDIALOG_H