[geos-commits] r2545 - in trunk/source: geomgraph headers/geos/geomgraph

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Jun 5 08:07:52 EDT 2009


Author: strk
Date: 2009-06-05 08:07:52 -0400 (Fri, 05 Jun 2009)
New Revision: 2545

Modified:
   trunk/source/geomgraph/DirectedEdgeStar.cpp
   trunk/source/geomgraph/Edge.cpp
   trunk/source/geomgraph/EdgeIntersectionList.cpp
   trunk/source/geomgraph/EdgeNodingValidator.cpp
   trunk/source/geomgraph/EdgeRing.cpp
   trunk/source/geomgraph/Label.cpp
   trunk/source/geomgraph/NodeFactory.cpp
   trunk/source/geomgraph/Position.cpp
   trunk/source/geomgraph/TopologyLocation.cpp
   trunk/source/headers/geos/geomgraph/DirectedEdge.h
   trunk/source/headers/geos/geomgraph/DirectedEdgeStar.h
   trunk/source/headers/geos/geomgraph/Edge.h
   trunk/source/headers/geos/geomgraph/EdgeIntersection.h
   trunk/source/headers/geos/geomgraph/EdgeIntersectionList.h
   trunk/source/headers/geos/geomgraph/EdgeNodingValidator.h
   trunk/source/headers/geos/geomgraph/EdgeRing.h
   trunk/source/headers/geos/geomgraph/Label.h
   trunk/source/headers/geos/geomgraph/NodeFactory.h
   trunk/source/headers/geos/geomgraph/Position.h
   trunk/source/headers/geos/geomgraph/Quadrant.h
   trunk/source/headers/geos/geomgraph/TopologyLocation.h
Log:
Complete port info in geomgraph package


Modified: trunk/source/geomgraph/DirectedEdgeStar.cpp
===================================================================
--- trunk/source/geomgraph/DirectedEdgeStar.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/DirectedEdgeStar.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/DirectedEdgeStar.java rev. 1.4 (JTS-1.7)
+ * Last port: geomgraph/DirectedEdgeStar.java rev. 1.4 (JTS-1.10)
  *
  **********************************************************************/
 

Modified: trunk/source/geomgraph/Edge.cpp
===================================================================
--- trunk/source/geomgraph/Edge.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/Edge.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,10 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/Edge.java rev. 1.4 (JTS-1.10)
+ *
  **********************************************************************/
 
 #ifdef _MSC_VER

Modified: trunk/source/geomgraph/EdgeIntersectionList.cpp
===================================================================
--- trunk/source/geomgraph/EdgeIntersectionList.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/EdgeIntersectionList.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  ********************************************************************** 
  *
- * Last port: geomgraph/EdgeIntersectionList.java rev. 1.3
+ * Last port: geomgraph/EdgeIntersectionList.java rev. 1.5 (JTS-1.10)
  *
  **********************************************************************/
 

Modified: trunk/source/geomgraph/EdgeNodingValidator.cpp
===================================================================
--- trunk/source/geomgraph/EdgeNodingValidator.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/EdgeNodingValidator.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/EdgeNodingValidator.java rev. 1.6 (JTS-1.9)
+ * Last port: geomgraph/EdgeNodingValidator.java rev. 1.6 (JTS-1.10)
  *
  **********************************************************************/
 

Modified: trunk/source/geomgraph/EdgeRing.cpp
===================================================================
--- trunk/source/geomgraph/EdgeRing.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/EdgeRing.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/EdgeRing.java rev. 1.9
+ * Last port: geomgraph/EdgeRing.java rev. 1.10 (JTS-1.10)
  *
  **********************************************************************/
 

Modified: trunk/source/geomgraph/Label.cpp
===================================================================
--- trunk/source/geomgraph/Label.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/Label.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/Label.java rev. 1.6 (JTS-1.7)
+ * Last port: geomgraph/Label.java rev. 1.8 (JTS-1.10)
  *
  **********************************************************************/
 
@@ -256,9 +256,9 @@
 std::ostream&
 operator<< (std::ostream& os, const Label& l)
 {
-	os << "a:"
+	os << "A:"
 	   << l.elt[0]
-	   << " b:"
+	   << " B:"
 	   << l.elt[1];
 	return os;
 }

Modified: trunk/source/geomgraph/NodeFactory.cpp
===================================================================
--- trunk/source/geomgraph/NodeFactory.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/NodeFactory.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,10 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/NodeFactory.java rev. 1.3 (JTS-1.10)
+ *
  **********************************************************************/
 
 #include <geos/geomgraph/NodeFactory.h>

Modified: trunk/source/geomgraph/Position.cpp
===================================================================
--- trunk/source/geomgraph/Position.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/Position.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,10 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/Position.java rev. 1.4 (JTS-1.10)
+ *
  **********************************************************************/
 
 #include <geos/geomgraph/Position.h>

Modified: trunk/source/geomgraph/TopologyLocation.cpp
===================================================================
--- trunk/source/geomgraph/TopologyLocation.cpp	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/geomgraph/TopologyLocation.cpp	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,7 +14,7 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/TopologyLocation.java rev. 1.6 (JTS-1.7)
+ * Last port: geomgraph/TopologyLocation.java rev. 1.6 (JTS-1.10)
  *
  **********************************************************************/
 

Modified: trunk/source/headers/geos/geomgraph/DirectedEdge.h
===================================================================
--- trunk/source/headers/geos/geomgraph/DirectedEdge.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/DirectedEdge.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -16,6 +16,8 @@
  *
  * Last port: geomgraph/DirectedEdge.java rev. 1.5 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/DirectedEdgeStar.h
===================================================================
--- trunk/source/headers/geos/geomgraph/DirectedEdgeStar.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/DirectedEdgeStar.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,12 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/DirectedEdgeStar.java rev. 1.4 (JTS-1.10)
+ *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 
@@ -46,7 +52,6 @@
  * It supports labelling the edges as well as linking the edges to form both
  * MaximalEdgeRings and MinimalEdgeRings.
  *
- * Last port: geomgraph/DirectedEdgeStar.java rev. 1.4 (JTS-1.7)
  */
 class DirectedEdgeStar: public EdgeEndStar {
 

Modified: trunk/source/headers/geos/geomgraph/Edge.h
===================================================================
--- trunk/source/headers/geos/geomgraph/Edge.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/Edge.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,12 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/Edge.java rev. 1.4 (JTS-1.10)
+ *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/EdgeIntersection.h
===================================================================
--- trunk/source/headers/geos/geomgraph/EdgeIntersection.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/EdgeIntersection.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -17,6 +17,8 @@
  *
  * Last port: geomgraph/EdgeIntersection.java rev. 1.5 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/EdgeIntersectionList.h
===================================================================
--- trunk/source/headers/geos/geomgraph/EdgeIntersectionList.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/EdgeIntersectionList.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,12 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/EdgeIntersectionList.java rev. 1.5 (JTS-1.10)
+ *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/EdgeNodingValidator.h
===================================================================
--- trunk/source/headers/geos/geomgraph/EdgeNodingValidator.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/EdgeNodingValidator.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,8 +14,10 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/EdgeNodingValidator.java rev. 1.6 (JTS-1.9)
+ * Last port: geomgraph/EdgeNodingValidator.java rev. 1.6 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/EdgeRing.h
===================================================================
--- trunk/source/headers/geos/geomgraph/EdgeRing.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/EdgeRing.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,8 +14,10 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/EdgeRing.java rev. 1.9
+ * Last port: geomgraph/EdgeRing.java rev. 1.10 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/Label.h
===================================================================
--- trunk/source/headers/geos/geomgraph/Label.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/Label.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,8 +14,10 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/Label.java rev. 1.6 (JTS-1.7)
+ * Last port: geomgraph/Label.java rev. 1.8 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/NodeFactory.h
===================================================================
--- trunk/source/headers/geos/geomgraph/NodeFactory.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/NodeFactory.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,12 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/NodeFactory.java rev. 1.3 (JTS-1.10)
+ *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/Position.h
===================================================================
--- trunk/source/headers/geos/geomgraph/Position.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/Position.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -12,6 +12,12 @@
  * by the Free Software Foundation. 
  * See the COPYING file for more information.
  *
+ **********************************************************************
+ *
+ * Last port: geomgraph/Position.java rev. 1.4 (JTS-1.10)
+ *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/Quadrant.h
===================================================================
--- trunk/source/headers/geos/geomgraph/Quadrant.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/Quadrant.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -16,6 +16,8 @@
  *
  * Last port: geomgraph/Quadrant.java rev. 1.8 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 

Modified: trunk/source/headers/geos/geomgraph/TopologyLocation.h
===================================================================
--- trunk/source/headers/geos/geomgraph/TopologyLocation.h	2009-06-05 11:03:53 UTC (rev 2544)
+++ trunk/source/headers/geos/geomgraph/TopologyLocation.h	2009-06-05 12:07:52 UTC (rev 2545)
@@ -14,8 +14,10 @@
  *
  **********************************************************************
  *
- * Last port: geomgraph/TopologyLocation.java rev. 1.6 (JTS-1.7)
+ * Last port: geomgraph/TopologyLocation.java rev. 1.6 (JTS-1.10)
  *
+ * NON-EXPOSED GEOS HEADER
+ *
  **********************************************************************/
 
 



More information about the geos-commits mailing list