diff options
Diffstat (limited to 'ui/qt5/horizonhelpwindow.hh')
-rw-r--r-- | ui/qt5/horizonhelpwindow.hh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/qt5/horizonhelpwindow.hh b/ui/qt5/horizonhelpwindow.hh new file mode 100644 index 0000000..7604861 --- /dev/null +++ b/ui/qt5/horizonhelpwindow.hh @@ -0,0 +1,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 |