1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 12:20:41 +00:00
OpenMW/apps/wizard/languageselectionpage.hpp

26 lines
466 B
C++
Raw Normal View History

#ifndef LANGUAGESELECTIONPAGE_HPP
#define LANGUAGESELECTIONPAGE_HPP
#include <QWizardPage>
#include "ui_languageselectionpage.h"
namespace Wizard
{
class MainWizard;
class LanguageSelectionPage : public QWizardPage, private Ui::LanguageSelectionPage
{
Q_OBJECT
public:
LanguageSelectionPage(MainWizard *wizard);
int nextId() const;
private:
MainWizard *mWizard;
};
}
#endif // LANGUAGESELECTIONPAGE_HPP