00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H
00016 #define GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H
00017
00018 #include <geos/export.h>
00019 #include <geos/inline.h>
00020
00021 namespace geos {
00022 namespace geom {
00023 class Geometry;
00024 }
00025 }
00026
00027 namespace geos {
00028 namespace geom {
00029
00043 class GEOS_DLL GeometryComponentFilter {
00044 public:
00045
00052 virtual void filter_rw(Geometry *geom);
00053 virtual void filter_ro(const Geometry *geom);
00054
00055 virtual ~GeometryComponentFilter() {}
00056 };
00057
00058 }
00059 }
00060
00061 #endif // ndef GEOS_GEOM_GEOMETRYCOMPONENTFILTER_H