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
QLayerList.h
Package: QGIS.rar [view]
Upload User: oybseng
Upload Date: 2015-04-27
Package Size: 7831k
Code Size: 1k
Category:
GDI-Bitmap
Development Platform:
Visual C++
- // QLayerList.h: interface for the CQLayerList class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_QLAYERLIST_H__BF3E9D73_B95A_45A9_A5C8_AECB6F0CD358__INCLUDED_)
- #define AFX_QLAYERLIST_H__BF3E9D73_B95A_45A9_A5C8_AECB6F0CD358__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CQLayerObj;
- class AFX_EXT_CLASS CQLayerList : public CPtrList
- {
- public:
- CQLayerList();
- virtual ~CQLayerList();
- CQLayerList(CQLayerList &List); //图层列表的拷贝构造函数
- void Copy(CQLayerList &List); //图层列表的拷贝函数
- void Add(CQLayerObj * pObject); //添加图层
- void Remove(CQLayerObj * pObject); //从列表中移出图层对象
- void Delete(CQLayerObj * pObject); //从列表中移出图层对象,并销毁图层对象
- void DeleteAll(); //删除列表中的所有的图层对象并销毁
- CQLayerObj * Find(long lLayerID); //根据图层的ID的查找图层对象
- virtual void Serialize(CArchive & ar); //图层列表的序列化
- inline CQLayerObj * GetAt(POSITION & rPosition); //获取rPosition处的图层指针
- inline POSITION GetHeadPosition(); //获取列表的头位置
- inline CQLayerObj * GetNext(POSITION & rPosition);//获取rPosition处的图层指针,并将rPosition向下移动一位
- };
- #endif // !defined(AFX_QLAYERLIST_H__BF3E9D73_B95A_45A9_A5C8_AECB6F0CD358__INCLUDED_)