File indexing completed on 2024-04-28 04:37:47

0001 /*
0002     SPDX-FileCopyrightText: 2009 Kris Wong <kris.p.wong@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_APPWIZARDPAGEWIDGET_H
0008 #define KDEVPLATFORM_PLUGIN_APPWIZARDPAGEWIDGET_H
0009 
0010 #include <QWidget>
0011 
0012 class AppWizardPageWidget : public QWidget
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit AppWizardPageWidget(QWidget* parent = nullptr);
0017     ~AppWizardPageWidget() override;
0018 
0019     virtual bool shouldContinue();
0020 };
0021 
0022 #endif // KDEVPLATFORM_PLUGIN_APPWIZARDPAGEWIDGET_H