[geos-commits] r2062 - trunk/source/geomgraph

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Dec 21 15:39:38 EST 2007


Author: benjubb
Date: 2007-12-21 15:39:38 -0500 (Fri, 21 Dec 2007)
New Revision: 2062

Modified:
   trunk/source/geomgraph/EdgeEndStar.cpp
Log:
modified because SimplePointInAreaLocator.h moved

Modified: trunk/source/geomgraph/EdgeEndStar.cpp
===================================================================
--- trunk/source/geomgraph/EdgeEndStar.cpp	2007-12-21 20:38:26 UTC (rev 2061)
+++ trunk/source/geomgraph/EdgeEndStar.cpp	2007-12-21 20:39:38 UTC (rev 2062)
@@ -20,7 +20,7 @@
 
 #include <geos/util/TopologyException.h>
 #include <geos/geomgraph/EdgeEndStar.h>
-#include <geos/algorithm/SimplePointInAreaLocator.h>
+#include <geos/algorithm/locate/SimplePointInAreaLocator.h>
 #include <geos/geom/Location.h>
 #include <geos/geomgraph/Label.h>
 #include <geos/geomgraph/Position.h>
@@ -185,7 +185,7 @@
 	// compute location only on demand
 	if (ptInAreaLocation[geomIndex]==Location::UNDEF)
 	{
-        	ptInAreaLocation[geomIndex]=algorithm::SimplePointInAreaLocator::locate(p,
+		ptInAreaLocation[geomIndex]=algorithm::locate::SimplePointInAreaLocator::locate(p,
 				(*geom)[geomIndex]->getGeometry());
 	}
 	return ptInAreaLocation[geomIndex];



More information about the geos-commits mailing list