#ifndef SOUNDWIZARD_H #define SOUNDWIZARD_H // System includes #include #include #include #include #include #include #include // Local includes #include "util.h" #include "logger.h" #include "soundpage2.h" #include "soundpage3.h" #include "soundpage4.h" #include "soundpagefinal.h" class SoundWizard: public QObject // for signals and slots { Q_OBJECT // for signals and slots public: SoundWizard(QString appLocation, QString workspaceWizardLocation, Logger *myLogger, QHash *commandMap); int exec(); private: QWizardPage* createIntroPage(); QString workspaceWizardLocation; QString soundsLocation; QString appLocation; Logger *myLogger; QWizard *myWizard; QHash *commandMap; private slots: void restartWizard(); void pageChanged(int pageId); }; #endif // SOUNDWIZARD_H