Setup wizard classes

This commit is contained in:
Dan Paulat 2023-11-06 21:55:39 -06:00
parent be33ff8cef
commit 388abb05bf
9 changed files with 273 additions and 33 deletions

View file

@ -0,0 +1,29 @@
#include <scwx/qt/ui/setup/setup_wizard.hpp>
namespace scwx
{
namespace qt
{
namespace ui
{
namespace setup
{
class SetupWizard::Impl
{
public:
explicit Impl() = default;
~Impl() = default;
};
SetupWizard::SetupWizard(QWidget* parent) :
QWizard(parent), p {std::make_shared<Impl>()}
{
}
SetupWizard::~SetupWizard() = default;
} // namespace setup
} // namespace ui
} // namespace qt
} // namespace scwx