ugkattrindex.h
来自「linux下一款GIS程序源码」· C头文件 代码 · 共 33 行
H
33 行
// ugkattrIndex.h: interface for the UGKAttrIndex class.///************************************************************************//* UGKAttrIndex *//* *//* Base class for accessing the indexing info about one field. *//************************************************************************/#ifndef UGKAttrIndex_H#define UGKAttrIndex_H#include "ugkglobal.h"class UGKAttrIndex {protected: UGKAttrIndex();public: virtual ~UGKAttrIndex(); virtual long GetFirstMatch( UGKField *psKey ) = 0; virtual long *GetAllMatches( UGKField *psKey ) = 0; virtual UGKErr AddEntry( UGKField *psKey, long nFID ) = 0; virtual UGKErr RemoveEntry( UGKField *psKey, long nFID ) = 0; virtual UGKErr Clear() = 0;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?