GpsPoint.h
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
- // GpsPoint.h: interface for the CGpsPoint class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_GPSPOINT_H__F6BFD537_AC05_11D7_B7C5_00E01808A228__INCLUDED_)
- #define AFX_GPSPOINT_H__F6BFD537_AC05_11D7_B7C5_00E01808A228__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CGpsPoint : public CObject
- {
- public:
- CGpsPoint();
- virtual ~CGpsPoint();
- CGpsPoint & operator = (const CGpsPoint &ds);
- public:
- long m_lx,m_ly;
- double m_dgx,m_dgy;
- BYTE m_gxBytes; //经度占用的字节数
- BYTE m_gyBytes; //纬度占用的字节数
- CString m_sVehicleNO;
- };
- #endif // !defined(AFX_GPSPOINT_H__F6BFD537_AC05_11D7_B7C5_00E01808A228__INCLUDED_)