www.pudn.com > Flight_Book.rar > Pass.h
#pragma once
#include "time.h"
class CPass
{
private:
char stationName[20]; //航空港名称
tm arrive; //到达时间
tm start; //起飞时间
tm stay; //停留时间
CPass *nextStation; //下一站
public:
CPass();
~CPass();
};