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