igc.h
changeset 27 dfefb6003498
parent 25 1549cae72d31
child 28 c55e1f2a4db4
equal deleted inserted replaced
26:4d79c3f357ad 27:dfefb6003498
    60     QString device() const { return device_; }	//!< the generator of the IGC file
    60     QString device() const { return device_; }	//!< the generator of the IGC file
    61     QString pilot() const { return pilot_; }	//!< pilots name
    61     QString pilot() const { return pilot_; }	//!< pilots name
    62     QString glider() const { return glider_; }	//!< type of glider
    62     QString glider() const { return glider_; }	//!< type of glider
    63     QDate date() const { return date_; }	//!< date of the record (start date?)
    63     QDate date() const { return date_; }	//!< date of the record (start date?)
    64     
    64     
    65     Fixes fixes() const { return fixes_; }	//!< list of fixes
    65     const Fixes& fixes() const { return fixes_; }	//!< list of fixes
    66 
    66 
    67     Fix start() const { return start_; }	//!< the very first fix
    67     Fix start() const { return start_; }	//!< the very first fix
    68     Fix landing() const { return landing_; }	//!< the very last fix
    68     Fix landing() const { return landing_; }	//!< the very last fix
    69 
    69 
    70   private:
    70   private: