1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef SUBTITLESAVEDPAGE_H #define SUBTITLESAVEDPAGE_H #include <QWizardPage> class QLabel; class SubtitleSavedPage : public QWizardPage { Q_OBJECT public: SubtitleSavedPage(QWidget *parent = 0); private: void initializePage(); QLabel *m_recap; }; #endif // SUBTITLESAVEDPAGE_H