Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MapParts.h
Package: SHP_to_VCT.rar [view]
Upload User: bjslfz
Upload Date: 2022-07-25
Package Size: 4430k
Code Size: 1k
Category:
File Operate
Development Platform:
C/C++
- /************************************************************
- 文件名: MapParts.h
- 作者: 谢婧 Version : 1.0 Date: 2008/05/26
- 类描述: 对多个点集合对象的管理
- 邮件地址:xiejing0707@163.com
- ***********************************************************/
- #ifndef _MAP_PARTS_H_
- #define _MAP_PARTS_H_
- #include "MapPoints.h"
- class CMapParts:public CObject {
- DECLARE_DYNAMIC(CMapParts)
- public:
- CMapParts();
- CMapParts(CMapParts& Parts);
- ~CMapParts();
- //attribute
- public:
- long GetCount();
- //operation
- public:
- void Add(CMapPoints* pPoints);
- void Set(long lindex, CMapPoints* pPoints);
- void Remove(long lindex);
- void Insert(long lindex, CMapPoints* pPoints);
- CMapPoints* Get(long lindex);
- void Clear();
- CArray<CMapPoints*,CMapPoints*> m_Parts; //存储点集合对象
- };
- #endif //_MAP_PARTS_H_