mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
26 lines
466 B
C++
26 lines
466 B
C++
|
#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
|