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