00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GEOS_GEOM_COORDINATEFILTER_H
00016 #define GEOS_GEOM_COORDINATEFILTER_H
00017
00018 #include <geos/export.h>
00019 #include <geos/inline.h>
00020
00021 #include <cassert>
00022
00023 namespace geos {
00024 namespace geom {
00025
00026 class Coordinate;
00027
00043 class GEOS_DLL CoordinateFilter {
00044 public:
00045 virtual ~CoordinateFilter() {}
00046
00052 virtual void filter_rw(Coordinate* ) const { assert(0); }
00053
00059 virtual void filter_ro(const Coordinate* ) { assert(0); }
00060 };
00061
00062 }
00063 }
00064
00065 #endif // ndef GEOS_GEOM_COORDINATEFILTER_H