📄 geogrid.h
字号:
// GeoGrid.h: interface for the CGeoGrid class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GEOGRID_H__19704088_85A6_4750_B80C_CCF15A987B91__INCLUDED_)
#define AFX_GEOGRID_H__19704088_85A6_4750_B80C_CCF15A987B91__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "IncluGeoH.h"
class CGeoGridAttri
{
public:
int m_nType; //表示当前记录地物的类型
int m_nLyerIndex; //当地物所在的层的索引号
int m_nPtIndex; //地物在所在层内的索引号
};
class CGeoGrid //一个格网,用来记录与该格网相关联的线和面
{
public:
vector<CGeoGridAttri> m_vecGeoGdAtt;//当前格网内某地物信息,用来索引该地物
CGeoGrid();
virtual ~CGeoGrid();
};
#endif // !defined(AFX_GEOGRID_H__19704088_85A6_4750_B80C_CCF15A987B91__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -