blob: d0f2cf7247509b78c7c1438444a56fd6e147f5a7 (
plain) (
tree)
|
|
#ifndef HORIZONWIZARDPAGE_HH
#define HORIZONWIZARDPAGE_HH
#include <QWizardPage>
#include <string>
#include "horizonwizard.hh"
class HorizonWizardPage : public QWizardPage
{
public:
HorizonWizardPage(QWidget *parent = 0) : QWizardPage(parent) {}
void loadWatermark(std::string page);
HorizonWizard *horizonWizard() const;
};
#endif // HORIZONWIZARDPAGE_HH
|