00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef GEOS_GEOM_UTIL_POINTEXTRACTER_H
00018 #define GEOS_GEOM_UTIL_POINTEXTRACTER_H
00019
00020 #include <geos/export.h>
00021 #include <geos/geom/GeometryFilter.h>
00022 #include <geos/geom/Point.h>
00023 #include <geos/platform.h>
00024 #include <vector>
00025
00026 namespace geos {
00027 namespace geom {
00028 namespace util {
00029
00033 class GEOS_DLL PointExtracter: public GeometryFilter {
00034
00035 private:
00036 Point::ConstVect& comps;
00037
00038 public:
00045 static void getPoints(const Geometry &geom, Point::ConstVect &ret)
00046 {
00047 PointExtracter pe(ret);
00048 geom.apply_ro(&pe);
00049 }
00050
00055 PointExtracter(Point::ConstVect& newComps)
00056 :
00057 comps(newComps)
00058 {}
00059
00060 void filter_rw(Geometry *geom)
00061 {
00062 if ( const Point *p=dynamic_cast<const Point *>(geom) )
00063 comps.push_back(p);
00064 }
00065
00066 void filter_ro(const Geometry *geom)
00067 {
00068 if ( const Point *p=dynamic_cast<const Point *>(geom) )
00069 comps.push_back(p);
00070 }
00071
00072 };
00073
00074 }
00075 }
00076 }
00077
00078 #endif
00079
00080
00081
00082
00083
00084
00085