#ifndef _AIRPLANE_H_ #define _AIRPLANE_H_ #include #include "person.cpp" #include "sorted.h" using namespace std; class AirPlane { public: AirPlane(); bool LandOff; string Flight; int Seats; int curSeats; string Start; string Dest; string STime; string ETime; SortedType Booker; string key; // Ãâ¹ßÁö + µµÂøÁö + Ãâ¹ß½Ã°£ }; AirPlane::AirPlane() { LandOff = false; curSeats = 0; } #endif