From 261dc10a82fadee5df1942340eaa7b101ff9323d Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 19 Jan 2020 23:30:36 -0500 Subject: Added about page and finally music is playing :D --- 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