File indexing completed on 2024-03-24 05:29:00

0001 /*
0002  * This file is part of the KDE project
0003  *
0004  * SPDX-FileCopyrightText: 2010 Alejandro Fiestas Olivares <afiestas@kde.org>
0005  * SPDX-FileCopyrightText: 2010-2011 UFO Coders <info@ufocoders.com>
0006  *
0007  * SPDX-License-Identifier: LGPL-2.0-or-later
0008  */
0009 
0010 #pragma once
0011 
0012 #include "ui_fail.h"
0013 
0014 #include <QWizardPage>
0015 
0016 class BlueWizard;
0017 
0018 class FailPage : public QWizardPage, Ui::Fail
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     explicit FailPage(BlueWizard *parent = nullptr);
0024 
0025     void initializePage() override;
0026 
0027 private:
0028     BlueWizard *const m_wizard;
0029 };