📄 geometrylist.h
字号:
/********************************************************************** * $Id: GeometryList.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * ********************************************************************** * * Last port: ORIGINAL WORK * **********************************************************************/#ifndef GEOS_GEOM_GEOMETRYLIST_H#define GEOS_GEOM_GEOMETRYLIST_H#include <geos/geom/Geometry.h> // for auto_ptr#include <memory> // for auto_ptr#include <vector> namespace geos {namespace geom { // geos.geom/** \brief * Manager of Geometry pointers. Owns the Geometries. */class GeometryList {public: /// auto_ptr needs to access private destructor friend class std::auto_ptr<GeometryList>; typedef std::vector<Geometry*>::size_type size_type; /// Only way to manage a GeometryList is trough /// this an auto_ptr<>. @see create() typedef std::auto_ptr<GeometryList> AutoPtr; /// Create an empty GeometryList static GeometryList::AutoPtr create(); /// Add a geometry to the list (takes ownership) void add(Geometry::AutoPtr geom); /// Return number of geometries in this list size_type size() const; /// Returned object lifetime is bound to GeometryList lifetime Geometry* operator[] (size_type); /// Returned object lifetime is bound to GeometryList lifetime const Geometry* operator[] (size_type) const;private: std::vector<Geometry*> geoms; GeometryList(); ~GeometryList();};} // namespace geos.geom} // namespace geos#endif // GEOS_GEOM_GEOMETRYLIST_H/********************************************************************** * $Log$ * Revision 1.2 2006/04/11 09:53:44 strk * Added missing duplicated include sentinel * * Revision 1.1 2006/04/11 09:41:26 strk * Initial implementation of a GeometryList class, to be used to manage * lists of Geometry pointers. * **********************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -