diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-08-04 01:04:52 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-08-04 01:04:52 +0200 |
commit | 872bb95acf6fabd639da57cd41a4844d7e6dd0f0 (patch) | |
tree | 689d8fd95b93e2b54111fd207e93f6789c4b7f28 /aboutdialog.h | |
download | numberator-872bb95acf6fabd639da57cd41a4844d7e6dd0f0.tar.gz numberator-872bb95acf6fabd639da57cd41a4844d7e6dd0f0.tar.bz2 numberator-872bb95acf6fabd639da57cd41a4844d7e6dd0f0.zip |
Initial commit
Diffstat (limited to 'aboutdialog.h')
-rw-r--r-- | aboutdialog.h | 26 |
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
|