#ifndef ABOUT_DIALOG_H #define ABOUT_DIALOG_H #include class AboutDialog: public QMessageBox { Q_OBJECT public: AboutDialog(QWidget* parent); private: QString createAboutText(); }; #endif