XStations.h
上传用户:yokoluohf
上传日期:2013-02-25
资源大小:769k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #pragma once
  2. #include "XStation.h"
  3. class XStations : public map <CString, XStation>
  4. {
  5. public:
  6. XStations();
  7. virtual ~XStations();
  8. public:
  9. int Append (const XStation& obj);
  10. int Remove (const XStation& obj);
  11. XStation* Find (const CString name);
  12. int GetCount ();
  13. };