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