mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
30 lines
398 B
C++
30 lines
398 B
C++
#pragma once
|
|
|
|
#include <QWizardPage>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
namespace setup
|
|
{
|
|
|
|
class MapLayoutPage : public QWizardPage
|
|
{
|
|
public:
|
|
explicit MapLayoutPage(QWidget* parent = nullptr);
|
|
~MapLayoutPage();
|
|
|
|
bool validatePage() override;
|
|
|
|
private:
|
|
class Impl;
|
|
std::shared_ptr<Impl> p;
|
|
};
|
|
|
|
} // namespace setup
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|