igc.h
changeset 10 e1abdc480485
child 11 d927333c8ffe
equal deleted inserted replaced
9:d9d5b83c1534 10:e1abdc480485
       
     1 #ifndef _igc_h_
       
     2 #define _igc_h_
       
     3 
       
     4 #include "pch.h"
       
     5 
       
     6 class IGC {
       
     7   public:
       
     8     void read(QTextStream&);
       
     9     QString author() const { return theAuthor; }
       
    10     QString pilot() const { return thePilot; }
       
    11   private:
       
    12     QString theAuthor, thePilot, theGlider;
       
    13     QStringList points;
       
    14 
       
    15 };
       
    16 #endif