📄 ugkattrindex.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -