gpslinkstruct.h

来自「用VC写的监控中心后台程序。 代码全」· C头文件 代码 · 共 76 行

H
76
字号
// GpsLinkLibStruct.h: interface for the CGpsLinkStruct class.
//
//////////////////////////////////////////////////////////////////////
#include "GpsPoint.h"

#if !defined(AFX_GPSLINKLIBSTRUCT_H__95A72EC1_CE31_11D7_B7C5_00E01808A228__INCLUDED_)
#define AFX_GPSLINKLIBSTRUCT_H__95A72EC1_CE31_11D7_B7C5_00E01808A228__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#define				GpsLibFileLen			8

class CGpsLinkStruct : public CObject  
{
public:
	CGpsLinkStruct();
	virtual ~CGpsLinkStruct();
	CGpsLinkStruct& operator = (CGpsLinkStruct& ds);
public:
	char		m_LinkLibName[GpsLibFileLen + 1];
	BYTE		m_LinkLibName_Bytes;

	char		m_PlaceName[GpsLibFileLen + 1];
	BYTE		m_PlaceName_Bytes;

	short		m_CurrMapIsTown;
	BYTE		m_CurrMapIsTown_Bytes;
	short		m_CurrFilePos;
	BYTE		m_CurrFilePos_Bytes;

	char		m_TopMapName[GpsLibFileLen + 1];
	BYTE		m_TopMapName_Bytes;
	short		m_TopMapPos;
	BYTE		m_TopMapPos_Bytes;
	short		m_TopMapIsTown;
	BYTE		m_TopMapIsTown_Bytes;

	char		m_BottomMapName[GpsLibFileLen + 1];
	BYTE		m_BottomMapName_Bytes;
	short		m_BottomMapPos;
	BYTE		m_BottomMapPos_Bytes;
	short		m_BottomMapIsTown;
	BYTE		m_BottomMapIsTown_Bytes;

	char		m_LeftMapName[GpsLibFileLen + 1];
	BYTE		m_LeftMapName_Bytes;
	short		m_LeftMapPos;
	BYTE		m_LeftMapPos_Bytes;
	short		m_LeftMapIsTown;
	BYTE		m_LeftMapIsTown_Bytes;

	char		m_RightMapName[GpsLibFileLen + 1];
	BYTE		m_RightMapName_Bytes;
	short		m_RightMapPos;
	BYTE		m_RightMapPos_Bytes;
	short		m_RightMapIsTown;
	BYTE		m_RightMapIsTown_Bytes;

	short		m_MapMinX,m_MapMinY;
	short		m_MapMaxX,m_MapMaxY;
	BYTE		m_MapXY_Bytes;

	char		m_RelatedSignLibName[GpsLibFileLen + 1];
	BYTE		m_SignLibName_Bytes;

	ChangeTriangle	m_MapTri;

public:	

};

#endif // !defined(AFX_GPSLINKLIBSTRUCT_H__95A72EC1_CE31_11D7_B7C5_00E01808A228__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?