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

交通/航空行业

开发平台:

Visual C++

  1. // GpsFatStruct.cpp: implementation of the CGpsFatStruct class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "GpsSC.h"
  6. #include "GpsFatStruct.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. CGpsFatStruct::CGpsFatStruct()
  16. {
  17. m_lLinkLibTotal = 0;
  18. m_lLinkLibAddr = 0;
  19. m_lDataLibTotal = 0;
  20. m_lDataLibAddr = 0;
  21. m_lSignLibTotal = 0;
  22. m_lSignLibAddr = 0;
  23. m_lRegionLibTotal = 0;
  24. m_lRegionLibAddr = 0;
  25. m_lRecordLibTotal = 0;
  26. m_lRecordLibAddr = 0;
  27. }
  28. CGpsFatStruct::~CGpsFatStruct()
  29. {
  30. }
  31. void CGpsFatStruct::Clear()
  32. {
  33. m_lLinkLibTotal = 0;
  34. m_lLinkLibAddr = 0;
  35. m_lDataLibTotal = 0;
  36. m_lDataLibAddr = 0;
  37. m_lSignLibTotal = 0;
  38. m_lSignLibAddr = 0;
  39. m_lRegionLibTotal = 0;
  40. m_lRegionLibAddr = 0;
  41. m_lRecordLibTotal = 0;
  42. m_lRecordLibAddr = 0;
  43. }