File indexing completed on 2025-03-16 13:53:34
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 * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com> 0007 * 0008 * SPDX-License-Identifier: LGPL-2.0-or-later 0009 */ 0010 0011 #ifndef SUCCESS_H 0012 #define SUCCESS_H 0013 0014 #include "ui_success.h" 0015 0016 #include <QWizardPage> 0017 0018 class BlueWizard; 0019 0020 class SuccessPage : public QWizardPage, Ui::Success 0021 { 0022 Q_OBJECT 0023 0024 public: 0025 explicit SuccessPage(BlueWizard *parent = nullptr); 0026 0027 int nextId() const override; 0028 void initializePage() override; 0029 0030 private: 0031 BlueWizard *const m_wizard; 0032 }; 0033 0034 #endif // SUCCESS_H