mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
22 lines
382 B
C++
22 lines
382 B
C++
|
#ifndef COMPONENTSELECTIONPAGE_HPP
|
||
|
#define COMPONENTSELECTIONPAGE_HPP
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
#include "ui_componentselectionpage.h"
|
||
|
|
||
|
namespace Wizard
|
||
|
{
|
||
|
|
||
|
class ComponentSelectionPage : public QWizardPage, private Ui::ComponentSelectionPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ComponentSelectionPage(QWidget *parent = 0);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTSELECTIONPAGE_HPP
|