igc.h
changeset 10 e1abdc480485
child 11 d927333c8ffe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/igc.h	Sun Jan 22 16:31:20 2012 +0100
@@ -0,0 +1,16 @@
+#ifndef _igc_h_
+#define _igc_h_
+
+#include "pch.h"
+
+class IGC {
+  public:
+    void read(QTextStream&);
+    QString author() const { return theAuthor; }
+    QString pilot() const { return thePilot; }
+  private:
+    QString theAuthor, thePilot, theGlider;
+    QStringList points;
+
+};
+#endif