mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-24 04:07:55 +01:00
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
/*
|
|
|
|
Firewall Builder
|
|
|
|
Copyright (C) 2011 NetCitadel, LLC
|
|
|
|
Author: Vadim Kurland vadim@fwbuilder.org
|
|
|
|
This program is free software which we release under the GNU General Public
|
|
License. You may redistribute and/or modify this program under the terms
|
|
of that license as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
To get a copy of the GNU General Public License, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#ifndef IC_PLATFORMWARNINGPAGE_H
|
|
#define IC_PLATFORMWARNINGPAGE_H
|
|
|
|
#include "ui_ic_platformwarningpage_q.h"
|
|
|
|
class IC_PlatformWarningPage : public QWizardPage
|
|
{
|
|
Q_OBJECT;
|
|
|
|
Ui::IC_PlatformWarningPage_q *m_dialog;
|
|
bool platformOk;
|
|
QString detectedPlatform;
|
|
|
|
public:
|
|
IC_PlatformWarningPage(QWidget *parent);
|
|
virtual ~IC_PlatformWarningPage() {}
|
|
|
|
virtual void initializePage();
|
|
virtual bool isComplete() const;
|
|
|
|
public slots:
|
|
void voteForFeature();
|
|
};
|
|
|
|
#endif // IC_PLATFORMWARNINGPAGE_H
|