summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonhelpwindow.hh
blob: 7604861344c28a0b62584dc0eba56b51f51c555b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef HORIZONHELPWINDOW_HH
#define HORIZONHELPWINDOW_HH

#include <QDialog>
#include <QFile>

class HorizonHelpWindow : public QDialog {
    Q_OBJECT
public:
    explicit HorizonHelpWindow(QFile *helpFile, QWidget *parent = 0);
private:
    QFile *helpFile;
};

#endif // HORIZONHELPWINDOW_HH