blob: d0f2cf7247509b78c7c1438444a56fd6e147f5a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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
|