⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ugklayerattrindex.h

📁 linux下一款GIS程序源码
💻 H
字号:
// ugklayerattrIndex.h: interface for the UGKLayerAttrIndex class.///************************************************************************//*                          UGKLayerAttrIndex                           *//*                                                                      *//*      Base class representing attribute indexes for all indexed       *//*      fields in a layer.                                              *//************************************************************************/#ifndef  UGKLayerAttrIndex_H#define  UGKLayerAttrIndex_H#include "ugkattrIndex.h"#include "ugkfeature.h"class UGKLayer;class UGKLayerAttrIndex  {protected:    UGKLayer    *poLayer;    char        *pszIndexPath;                UGKLayerAttrIndex();public:		virtual     ~UGKLayerAttrIndex();	virtual UGKErr Initialize( const char *pszIndexPath, UGKLayer * ) = 0;		virtual UGKErr CreateIndex( int iField ) = 0;	virtual UGKErr DropIndex( int iField ) = 0;	virtual UGKErr IndexAllFeatures( int iField = -1 ) = 0;	virtual UGKErr AddToIndex( UGKFeature *poFeature, int iField = -1 ) = 0;	virtual UGKErr RemoveFromIndex( UGKFeature *poFeature ) = 0;	virtual UGKAttrIndex *GetFieldIndex( int iField ) = 0;};#endif 

⌨️ 快捷键说明

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