blob: 65b292c02a5c3ac5b48b288b60076f5c7cc4b31a (
plain) (
tree)
|
|
#ifndef HORIZONWIZARDPAGE_HH
#define HORIZONWIZARDPAGE_HH
#include <QWizardPage>
#include <string>
class HorizonWizardPage : public QWizardPage
{
public:
HorizonWizardPage(QWidget *parent = 0) : QWizardPage(parent) {}
void loadWatermark(std::string page);
};
#endif // HORIZONWIZARDPAGE_HH
|