GpsPoint.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // GpsPoint.cpp: implementation of the CGpsPoint class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "GpsSC.h"
  6. #include "GpsPoint.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CGpsPoint::CGpsPoint()
  16. {
  17. m_dgx = 0.0;
  18. m_dgy = 0.0;
  19. m_lx  = 0;
  20. m_ly  = 0;
  21. m_gxBytes = 4;
  22. m_gyBytes = 4;
  23. m_sVehicleNO.Empty();
  24. }
  25. CGpsPoint::~CGpsPoint()
  26. {
  27. }
  28. CGpsPoint& CGpsPoint::operator = (const CGpsPoint& ds)
  29. {
  30. m_dgx = ds.m_dgx;
  31. m_dgy = ds.m_dgy;
  32. m_lx = ds.m_lx;
  33. m_ly = ds.m_ly;
  34. m_gxBytes = ds.m_gxBytes;
  35. m_gyBytes = ds.m_gyBytes;
  36. m_sVehicleNO = ds.m_sVehicleNO;
  37. return *this;
  38. }