From 1a92e988d63753d2904ac775c4b30589e76c7e5c Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 10 Feb 2020 21:24:06 -0500 Subject: Added about dialog, address bar works --- about.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 about.h (limited to 'about.h') diff --git a/about.h b/about.h new file mode 100644 index 0000000..a88d2ac --- /dev/null +++ b/about.h @@ -0,0 +1,22 @@ +#ifndef ABOUT_H +#define ABOUT_H + +#include + +namespace Ui { +class About; +} + +class About : public QDialog +{ + Q_OBJECT + +public: + explicit About(QWidget *parent = nullptr); + ~About(); + +private: + Ui::About *ui; +}; + +#endif // ABOUT_H -- cgit v1.2.3