- #pragma once
- class XStations;
- class XStation
- {
- public:
- XStation();
- virtual ~XStation();
- public:
- CString name;
- PointF position;
- vector<CString> lines;
- public:
- int Append (const CString& name);
- int Remove (const CString& name);
- //int Expand (vector<CString>& stations); //经过的线路的所有站点
- };