1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef ABOUTDIALOG_H #define ABOUTDIALOG_H #include <QDialog> class AboutDialog : public QDialog { Q_OBJECT public: explicit AboutDialog(QWidget *parent = 0); signals: public slots: }; #endif // ABOUTDIALOG_H