mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
382 B
C++
22 lines
382 B
C++
11 years ago
|
#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
|