/********************************************************************** * $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 // for auto_ptr #include // for auto_ptr #include 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; typedef std::vector::size_type size_type; /// Only way to manage a GeometryList is trough /// this an auto_ptr<>. @see create() typedef std::auto_ptr 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 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. * **********************************************************************/