67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
|
/**********************************************************************
|
||
|
*
|
||
|
* GEOS - Geometry Engine Open Source
|
||
|
* http://geos.osgeo.org
|
||
|
*
|
||
|
* Copyright (C) 2001-2002 Vivid Solutions Inc.
|
||
|
* 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.
|
||
|
*
|
||
|
**********************************************************************/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <geos/export.h>
|
||
|
#include <geos/geom/GeometryFilter.h>
|
||
|
#include <geos/geom/Polygon.h>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace geos {
|
||
|
namespace geom { // geos.geom
|
||
|
namespace util { // geos.geom.util
|
||
|
|
||
|
/**
|
||
|
* Extracts all the 2-dimensional (Polygon) components from a Geometry.
|
||
|
*/
|
||
|
class GEOS_DLL PolygonExtracter: public GeometryFilter {
|
||
|
|
||
|
public:
|
||
|
|
||
|
/**
|
||
|
* Pushes the Polygon components from a single geometry into
|
||
|
* the provided vector.
|
||
|
* If more than one geometry is to be processed, it is more
|
||
|
* efficient to create a single PolygonExtracterFilter instance
|
||
|
* and pass it to multiple geometries.
|
||
|
*/
|
||
|
static void getPolygons(const Geometry& geom, std::vector<const Polygon*>& ret);
|
||
|
|
||
|
/**
|
||
|
* Constructs a PolygonExtracterFilter with a list in which
|
||
|
* to store Polygons found.
|
||
|
*/
|
||
|
PolygonExtracter(std::vector<const Polygon*>& newComps);
|
||
|
|
||
|
void filter_rw(Geometry* geom) override;
|
||
|
|
||
|
void filter_ro(const Geometry* geom) override;
|
||
|
|
||
|
private:
|
||
|
|
||
|
/// Reference to provided vector
|
||
|
std::vector<const Polygon*>& comps;
|
||
|
|
||
|
// Declare type as noncopyable
|
||
|
PolygonExtracter(const PolygonExtracter& other) = delete;
|
||
|
PolygonExtracter& operator=(const PolygonExtracter& rhs) = delete;
|
||
|
};
|
||
|
|
||
|
} // namespace geos.geom.util
|
||
|
} // namespace geos.geom
|
||
|
} // namespace geos
|
||
|
|