コード例 #1
0
ファイル: Runway.hpp プロジェクト: doughodson/OpenEaagles
// longitude: returns the value of the runway end longitude field
inline double Runway::longitude(const WhichEnd whichEnd) const
{
   if (whichEnd == LOW_END)
      return dsLongitude( makePointer(RW_LE_LONGITUDE_POS) );
   else
      return dsLongitude( makePointer(RW_HE_LONGITUDE_POS) );
}
コード例 #2
0
ファイル: Record.cpp プロジェクト: AFIT-Hodson/OpenEaagles
// longitude: returns the value of the longitude field
double Record::longitude() const
{
   return dsLongitude( makePointer(ptbl->longitude) );
}