summaryrefslogtreecommitdiff
path: root/src/main-view/AboutDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main-view/AboutDialog.h')
-rw-r--r--src/main-view/AboutDialog.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main-view/AboutDialog.h b/src/main-view/AboutDialog.h
new file mode 100644
index 0000000..d05c11c
--- /dev/null
+++ b/src/main-view/AboutDialog.h
@@ -0,0 +1,17 @@
+#ifndef ABOUT_DIALOG_H
+#define ABOUT_DIALOG_H
+
+#include <QtWidgets>
+
+class AboutDialog: public QMessageBox
+{
+ Q_OBJECT
+
+public:
+ AboutDialog(QWidget* parent);
+
+private:
+ QString createAboutText();
+};
+
+#endif