summaryrefslogtreecommitdiff
path: root/horizonhelpwindow.hh
diff options
context:
space:
mode:
Diffstat (limited to 'horizonhelpwindow.hh')
-rw-r--r--horizonhelpwindow.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/horizonhelpwindow.hh b/horizonhelpwindow.hh
new file mode 100644
index 0000000..a84d33b
--- /dev/null
+++ b/horizonhelpwindow.hh
@@ -0,0 +1,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