GEOS 3.6.2
GeometryComponentFilter.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2005-2006 Refractions Research Inc.
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14
15#ifndef GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H
16#define GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H
17
18#include <geos/export.h>
19#include <geos/inline.h>
20
21namespace geos {
22 namespace geom { // geos::geom
23 class Geometry;
24 }
25}
26
27namespace geos {
28namespace geom { // geos::geom
29
44public:
45
52 virtual void filter_rw(Geometry *geom);
53 virtual void filter_ro(const Geometry *geom);
54
55 virtual ~GeometryComponentFilter() {}
56};
57
58} // namespace geos::geom
59} // namespace geos
60
61#endif // ndef GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H
Definition GeometryComponentFilter.h:43
virtual void filter_rw(Geometry *geom)
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:167
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25