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

交通/航空行业

开发平台:

Visual C++

  1. // RoadPoint.h: interface for the CRoadPoint class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ROADPOINT_H__2926D1A2_C3F6_11D7_B7C5_00E01808A228__INCLUDED_)
  5. #define AFX_ROADPOINT_H__2926D1A2_C3F6_11D7_B7C5_00E01808A228__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GpsPoint.h"
  10. class CRoadPoint : public CGpsPoint
  11. {
  12. public:
  13. CRoadPoint();
  14. virtual ~CRoadPoint();
  15. CRoadPoint & operator=(const CRoadPoint &ds);
  16. public:
  17. BYTE BigRoad_SerialNumber[2];
  18. BYTE BigRoad_SN_Bytes; //大路序号占用的字节数
  19. BYTE OutOfMap;
  20. BYTE OutOfMap_Bytes; //出图标志占用的字节数
  21. bool m_bIsModify;
  22. public:
  23. void Clear();
  24. };
  25. #endif // !defined(AFX_ROADPOINT_H__2926D1A2_C3F6_11D7_B7C5_00E01808A228__INCLUDED_)