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

GIS编程

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include "XStation.h"
  3. #include "XStations.h"
  4. XStation::XStation()
  5. {
  6. name = "";
  7. position.X = 0.0;
  8. position.Y = 0.0;
  9. }
  10. XStation::~XStation()
  11. {
  12. }
  13. int XStation::Append (const CString& name)
  14. {
  15. if (!name.IsEmpty())
  16. lines.push_back(name);
  17. return (int) lines.size();
  18. }
  19. int XStation::Remove (const CString& name)
  20. {
  21. vector<CString>::iterator pos;
  22. pos = find(lines.begin(),lines.end(),name);
  23. if (pos != lines.end())
  24. lines.erase(pos);
  25. return (int) lines.size();
  26. }