Skip to content

Commit

Permalink
Drop embedded RCS logs
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/geos/trunk@3650 5242fede-7e19-0410-aef8-94bd7d2200fb
  • Loading branch information
Sandro Santilli committed May 29, 2012
1 parent 4653d9b commit 9821882
Show file tree
Hide file tree
Showing 443 changed files with 0 additions and 8,880 deletions.
111 changes: 0 additions & 111 deletions doc/example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1116,114 +1116,3 @@ main()

exit(0);
}

/**********************************************************************
* $Log$
* Revision 1.46 2006/04/09 11:07:54 mloskot
* Small fixes in doc/example.cpp.
*
* Revision 1.45 2006/04/04 08:16:46 strk
* Changed GEOSException hierarchy to be derived from std::runtime_exception.
* Removed the GEOSException::toString redundant method (use ::what() instead)
*
* Revision 1.44 2006/03/28 15:19:22 strk
* Added macros for sections skip (useful in debugging)
*
* Revision 1.43 2006/03/15 18:44:51 strk
* Bug #60 - Missing <cmath> header in some files
*
* Revision 1.42 2006/03/06 21:27:39 strk
* Cascading fixed after Unload definition moved to geos::io namespace
*
* Revision 1.41 2006/03/06 19:40:46 strk
* geos::util namespace. New GeometryCollection::iterator interface, many cleanups.
*
* Revision 1.40 2006/03/06 15:23:14 strk
* geos::io namespace
*
* Revision 1.39 2006/03/03 10:46:21 strk
* Removed 'using namespace' from headers, added missing headers in .cpp files, removed useless includes in headers (bug#46)
*
* Revision 1.38 2006/02/19 19:46:49 strk
* Packages <-> namespaces mapping for most GEOS internal code (uncomplete, but working). Dir-level libs for index/ subdirs.
*
* Revision 1.37 2006/02/09 15:52:47 strk
* GEOSException derived from std::exception; always thrown and cought by const ref.
*
* Revision 1.36 2006/01/31 19:07:33 strk
* - Renamed DefaultCoordinateSequence to CoordinateArraySequence.
* - Moved GetNumGeometries() and GetGeometryN() interfaces
* from GeometryCollection to Geometry class.
* - Added getAt(int pos, Coordinate &to) funtion to CoordinateSequence class.
* - Reworked automake scripts to produce a static lib for each subdir and
* then link all subsystem's libs togheter
* - Moved C-API in it's own top-level dir capi/
* - Moved source/bigtest and source/test to tests/bigtest and test/xmltester
* - Fixed PointLocator handling of LinearRings
* - Changed CoordinateArrayFilter to reduce memory copies
* - Changed UniqueCoordinateArrayFilter to reduce memory copies
* - Added CGAlgorithms::isPointInRing() version working with
* Coordinate::ConstVect type (faster!)
* - Ported JTS-1.7 version of ConvexHull with big attention to
* memory usage optimizations.
* - Improved XMLTester output and user interface
* - geos::geom::util namespace used for geom/util stuff
* - Improved memory use in geos::geom::util::PolygonExtractor
* - New ShortCircuitedGeometryVisitor class
* - New operation/predicate package
*
* Revision 1.35 2005/11/30 11:27:07 strk
* catch std::exception by ref
*
* Revision 1.34 2005/11/30 11:25:12 strk
* includes cleanup
*
* Revision 1.33 2005/09/27 16:20:43 strk
* Reverted previous change, fixed the bug by turning WKBReader.factory
* into a reference rather then a real object. ABI still breaks, but API
* at least is safe (we didn't release any WKB-aware package so breaking
* ABI is not a big deal at this stage).
*
* Revision 1.32 2005/09/27 16:00:26 strk
* Fixed bug in WKBReader destroying the GeometryFactory used in Geometry
* construction. Changed it's definition to *require* a GeometryFactory
* pointer parameter.
*
* Revision 1.31 2005/09/26 08:17:19 strk
* Removed memory leak from WKB tester
*
* Revision 1.30 2005/09/03 21:26:42 strk
* Reworked WKB I/O to avoid use of templates and make better use of STL
*
* Revision 1.29 2005/07/11 12:17:26 strk
* Commented out useless include
*
* Revision 1.28 2005/04/29 16:36:28 strk
* Made WKBReader use global_factory, for having WKB reads produce
* same context of input geoms.
*
* Revision 1.27 2005/04/29 15:34:20 strk
* Typedef'ed biostringstream, preferred parameter for
* WKB parser templates.
* Added << operator for biostringstream.
* Typedef'ed WKBWriter and WKBReader to be parametrized by
* biostringstream.
* Added WKBtest in doc/example.cpp
*
* Revision 1.26 2004/12/08 13:54:43 strk
* gcc warnings checked and fixed, general cleanups.
*
* Revision 1.25 2004/10/13 10:03:02 strk
* Added missing linemerge and polygonize operation.
* Bug fixes and leaks removal from the newly added modules and
* planargraph (used by them).
* Some comments and indentation changes.
*
* Revision 1.24 2004/07/22 16:58:01 strk
* runtime version extractor functions split. geos::version() is now
* geos::geosversion() and geos::jtsport()
*
* Revision 1.23 2004/07/17 09:19:32 strk
* added GEOS version report
*
*********************************************************************/
42 changes: 0 additions & 42 deletions examples/CPCLException.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,48 +10,6 @@
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.7 2006/04/04 08:16:46 strk
* Changed GEOSException hierarchy to be derived from std::runtime_exception.
* Removed the GEOSException::toString redundant method (use ::what() instead)
*
* Revision 1.6 2006/01/31 19:07:33 strk
* - Renamed DefaultCoordinateSequence to CoordinateArraySequence.
* - Moved GetNumGeometries() and GetGeometryN() interfaces
* from GeometryCollection to Geometry class.
* - Added getAt(int pos, Coordinate &to) funtion to CoordinateSequence class.
* - Reworked automake scripts to produce a static lib for each subdir and
* then link all subsystem's libs togheter
* - Moved C-API in it's own top-level dir capi/
* - Moved source/bigtest and source/test to tests/bigtest and test/xmltester
* - Fixed PointLocator handling of LinearRings
* - Changed CoordinateArrayFilter to reduce memory copies
* - Changed UniqueCoordinateArrayFilter to reduce memory copies
* - Added CGAlgorithms::isPointInRing() version working with
* Coordinate::ConstVect type (faster!)
* - Ported JTS-1.7 version of ConvexHull with big attention to
* memory usage optimizations.
* - Improved XMLTester output and user interface
* - geos::geom::util namespace used for geom/util stuff
* - Improved memory use in geos::geom::util::PolygonExtractor
* - New ShortCircuitedGeometryVisitor class
* - New operation/predicate package
*
* Revision 1.5 2004/07/08 19:34:49 strk
* Mirrored JTS interface of CoordinateSequence, factory and
* default implementations.
* Added CoordinateArraySequenceFactory::instance() function.
*
* Revision 1.4 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.3 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
39 changes: 0 additions & 39 deletions examples/CoordinateSequencesExample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,45 +13,6 @@
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.3 2006/02/09 15:52:47 strk
* GEOSException derived from std::exception; always thrown and cought by const ref.
*
* Revision 1.2 2006/01/31 19:07:33 strk
* - Renamed DefaultCoordinateSequence to CoordinateArraySequence.
* - Moved GetNumGeometries() and GetGeometryN() interfaces
* from GeometryCollection to Geometry class.
* - Added getAt(int pos, Coordinate &to) funtion to CoordinateSequence class.
* - Reworked automake scripts to produce a static lib for each subdir and
* then link all subsystem's libs togheter
* - Moved C-API in it's own top-level dir capi/
* - Moved source/bigtest and source/test to tests/bigtest and test/xmltester
* - Fixed PointLocator handling of LinearRings
* - Changed CoordinateArrayFilter to reduce memory copies
* - Changed UniqueCoordinateArrayFilter to reduce memory copies
* - Added CGAlgorithms::isPointInRing() version working with
* Coordinate::ConstVect type (faster!)
* - Ported JTS-1.7 version of ConvexHull with big attention to
* memory usage optimizations.
* - Improved XMLTester output and user interface
* - geos::geom::util namespace used for geom/util stuff
* - Improved memory use in geos::geom::util::PolygonExtractor
* - New ShortCircuitedGeometryVisitor class
* - New operation/predicate package
*
* Revision 1.1 2004/07/08 19:41:27 strk
* renamed to reflect JTS API.
*
* Revision 1.5 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.4 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
21 changes: 0 additions & 21 deletions examples/CustomCoordinateSequenceExample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,6 @@
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.3 2006/04/04 08:16:46 strk
* Changed GEOSException hierarchy to be derived from std::runtime_exception.
* Removed the GEOSException::toString redundant method (use ::what() instead)
*
* Revision 1.2 2006/02/09 15:52:47 strk
* GEOSException derived from std::exception; always thrown and cought by const ref.
*
* Revision 1.1 2004/07/08 19:41:27 strk
* renamed to reflect JTS API.
*
* Revision 1.6 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.5 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
17 changes: 0 additions & 17 deletions examples/CustomCoordinateSequenceExample.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,6 @@
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.2 2006/04/04 08:16:46 strk
* Changed GEOSException hierarchy to be derived from std::runtime_exception.
* Removed the GEOSException::toString redundant method (use ::what() instead)
*
* Revision 1.1 2004/07/08 19:41:27 strk
* renamed to reflect JTS API.
*
* Revision 1.8 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.7 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
20 changes: 0 additions & 20 deletions examples/CustomPointCoordinateSequence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,6 @@
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.3 2006/02/09 15:52:47 strk
* GEOSException derived from std::exception; always thrown and cought by const ref.
*
* Revision 1.2 2005/01/28 09:47:51 strk
* Replaced sprintf uses with ostringstream.
*
* Revision 1.1 2004/07/08 19:41:27 strk
* renamed to reflect JTS API.
*
* Revision 1.6 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.5 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
13 changes: 0 additions & 13 deletions include/acconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,6 @@
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
* $Log$
* Revision 1.4 2004/07/19 10:30:05 strk
* acconfig.h moved one directory up
*
* Revision 1.1 2004/07/02 13:20:42 strk
* Header files moved under geos/ dir.
*
* Revision 1.2 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/


Expand Down
5 changes: 0 additions & 5 deletions include/geos/algorithm/CentralEndpointIntersector.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,3 @@ class GEOS_DLL CentralEndpointIntersector {
#endif

#endif // GEOS_ALGORITHM_CENTRALENDPOINTINTERSECTOR_H

/**********************************************************************
* $Log$
**********************************************************************/

8 changes: 0 additions & 8 deletions include/geos/algorithm/CentroidArea.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,3 @@ class GEOS_DLL CentroidArea {


#endif // GEOS_ALGORITHM_CENTROIDAREA_H

/**********************************************************************
* $Log$
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

8 changes: 0 additions & 8 deletions include/geos/algorithm/CentroidLine.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,3 @@ class GEOS_DLL CentroidLine {


#endif // GEOS_ALGORITHM_CENTROIDLINE_H

/**********************************************************************
* $Log$
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

8 changes: 0 additions & 8 deletions include/geos/algorithm/CentroidPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,3 @@ class GEOS_DLL CentroidPoint {
} // namespace geos

#endif // GEOS_ALGORITHM_CENTROIDPOINT_H

/**********************************************************************
* $Log$
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

11 changes: 0 additions & 11 deletions include/geos/algorithm/ConvexHull.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,14 +190,3 @@ class GEOS_DLL ConvexHull {
#endif

#endif // GEOS_ALGORITHM_CONVEXHULL_H

/**********************************************************************
* $Log$
* Revision 1.2 2006/03/24 09:52:41 strk
* USE_INLINE => GEOS_INLINE
*
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

7 changes: 0 additions & 7 deletions include/geos/algorithm/InteriorPointArea.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,3 @@ class GEOS_DLL InteriorPointArea {

#endif // GEOS_ALGORITHM_INTERIORPOINTAREA_H

/**********************************************************************
* $Log$
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

7 changes: 0 additions & 7 deletions include/geos/algorithm/InteriorPointLine.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,3 @@ class GEOS_DLL InteriorPointLine {

#endif // GEOS_ALGORITHM_INTERIORPOINTLINE_H

/**********************************************************************
* $Log$
* Revision 1.1 2006/03/09 16:46:48 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/

Loading

0 comments on commit 9821882

Please sign in to comment.