GpsFatStruct.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
- // GpsFatStruct.cpp: implementation of the CGpsFatStruct class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "GpsSC.h"
- #include "GpsFatStruct.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CGpsFatStruct::CGpsFatStruct()
- {
- m_lLinkLibTotal = 0;
- m_lLinkLibAddr = 0;
- m_lDataLibTotal = 0;
- m_lDataLibAddr = 0;
- m_lSignLibTotal = 0;
- m_lSignLibAddr = 0;
- m_lRegionLibTotal = 0;
- m_lRegionLibAddr = 0;
- m_lRecordLibTotal = 0;
- m_lRecordLibAddr = 0;
- }
- CGpsFatStruct::~CGpsFatStruct()
- {
- }
- void CGpsFatStruct::Clear()
- {
- m_lLinkLibTotal = 0;
- m_lLinkLibAddr = 0;
- m_lDataLibTotal = 0;
- m_lDataLibAddr = 0;
- m_lSignLibTotal = 0;
- m_lSignLibAddr = 0;
- m_lRegionLibTotal = 0;
- m_lRegionLibAddr = 0;
- m_lRecordLibTotal = 0;
- m_lRecordLibAddr = 0;
- }