ugklayerattrindex.h

来自「linux下一款GIS程序源码」· C头文件 代码 · 共 44 行

H
44
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?