Complete Note#1 in the http://wiki.osgeo.org/wiki/GEOS_Provenance_Review to get out...
[geos.git] / src / geom / GeometryComponentFilter.cpp
blobeb559fd9eccd0cf056e9835c019c13a8d15405a4
1 /**********************************************************************
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
6 * Copyright (C) 2006 Refractions Research Inc.
7 * Copyright (C) 2001-2002 Vivid Solutions Inc.
9 * This is free software; you can redistribute and/or modify it under
10 * the terms of the GNU Lesser General Public Licence as published
11 * by the Free Software Foundation.
12 * See the COPYING file for more information.
14 **********************************************************************/
16 #include <cassert>
18 #include <geos/geom/GeometryComponentFilter.h>
19 #include <geos/geom/Geometry.h>
20 #include <geos/util.h>
22 namespace geos {
23 namespace geom { // geos::geom
25 void GeometryComponentFilter::filter_rw(Geometry *geom)
27 ::geos::ignore_unused_variable_warning(geom);
28 assert(0);
31 void GeometryComponentFilter::filter_ro(const Geometry *geom)
33 ::geos::ignore_unused_variable_warning(geom);
34 assert(0);
38 } // namespace geos::geom
39 } // namespace geos
41 /**********************************************************************
42 * $Log$
43 * Revision 1.12 2006/04/13 14:25:17 strk
44 * TopologyPreservingSimplifier initial port
46 * Revision 1.11 2006/03/22 16:58:34 strk
47 * Removed (almost) all inclusions of geom.h.
48 * Removed obsoleted .cpp files.
49 * Fixed a bug in WKTReader not using the provided CoordinateSequence
50 * implementation, optimized out some memory allocations.
52 **********************************************************************/