- #pragma once
- #include "XStation.h"
- class XStations : public map <CString, XStation>
- {
- public:
- XStations();
- virtual ~XStations();
- public:
- int Append (const XStation& obj);
- int Remove (const XStation& obj);
- XStation* Find (const CString name);
- int GetCount ();
- };