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