MapFields.h
上传用户:bjslfz
上传日期:2022-07-25
资源大小:4430k
文件大小:1k
- /************************************************************
- 文件名: MapFields.h
-
- 作者: 谢婧 Version : 1.0 Date: 2008/05/26
-
- 类描述: 对属性数据的单条记录管理
-
- 邮件地址:xiejing0707@163.com
- ***********************************************************/
- #ifndef _MAP_FIELDS_H_
- #define _MAP_FIELDS_H_
- #include "MapField.h"
- class CMapFields {
- public:
- CMapFields();
- CMapFields(CMapFields& fields );
- ~CMapFields();
- //Attribute
- public:
- short GetCout();
- //operation
- public:
- void Add(CMapField* pField);
- void Remove(short sindex);
- void Insert(short sindex, CMapField* pField);
- CMapField *GetField(short sIndex);
- void Clear();
- private:
- CArray<CMapField*,CMapField*> m_Fields; //存储字段
- };
- #endif //_MAP_FIELDS_H_